From 36ecc8089ec31b0237ee679b663167b9ab2e2b6f Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Sun, 10 Dec 2023 20:43:30 +0600 Subject: [PATCH] added 854A --- 854A Fraction/854A.cpp | 98 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 854A Fraction/854A.cpp diff --git a/854A Fraction/854A.cpp b/854A Fraction/854A.cpp new file mode 100644 index 0000000..9883b3c --- /dev/null +++ b/854A Fraction/854A.cpp @@ -0,0 +1,98 @@ +#include +using namespace std; + +// Short forms +#define int long long +#define ll long long +#define lld long double +#define ull unsigned long long +#define endl '\n' +#define ff first +#define ss second +#define all(x) x.begin(), x.end() +#define sz(x) (int)(x).size() +#define pb push_back +#define ppb pop_back +#define mp make_pair +#define ins insert +#define fr(i, a, b) for(int i=a; ib; --i) +#define nf(i, n) for(int i=n; i>0; --i) + +// STLs +#define PII pair +#define VI vector +#define VVI vector> +#define SI set +#define SC set +#define MII map +#define VLL vector +#define VVL vector> +#define SL set + +// Outputs +#define yes cout<<"YES"< void _print(pair p); +template void _print(vector v);template void _print(set v); +template void _print(map v);template void _print(multiset v); +template void _print(pair p) {cerr << "{"; _print(p.first); cerr << ","; _print(p.second); cerr << "}";} +template void _print(vector v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(set v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(multiset v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} + + +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +void solve() +{ + int n; + cin>>n; + nf(i,n/2) + { + if(gcd(i,n-i)==1) + { + cout<> TC; + while (TC--) solve(); +} \ No newline at end of file