/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 2ms 540.0 KiB
#3 Accepted 2ms 512.0 KiB
#4 Accepted 2ms 540.0 KiB
#5 Accepted 2ms 332.0 KiB
#6 Accepted 2ms 540.0 KiB
#7 Accepted 2ms 528.0 KiB
#8 Accepted 2ms 328.0 KiB
#9 Accepted 2ms 336.0 KiB

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-10-03 14:10:52
Judged By
Score
100
Total Time
2ms
Peak Memory
540.0 KiB