Accepted
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=1e6+10,MOD=1000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
int cas=1;
while(t--){
ll a,b;
cin>>a>>b;
ll rem=0;
if(a>0 || b>0)
rem=__gcd(a,b);
if(rem==0)rem=1;
b/=rem;
a/=rem;
cout<<"Game #"<<cas<<": ";
cout<<b<<" / "<<a<<"\n";
cas++;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1001 Achievement-Unlocked
- Contest
- Beta Round #1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2023-11-29 16:51:07
- Judged At
- 2024-11-11 03:50:48
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB