結果
問題 | No.982 Add |
ユーザー | LayCurse |
提出日時 | 2020-02-11 13:31:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,516 bytes |
コンパイル時間 | 2,738 ms |
コンパイル使用メモリ | 213,572 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 07:18:12 |
合計ジャッジ時間 | 3,331 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
ソースコード
#pragma GCC optimize ("Ofast") #include<bits/stdc++.h> using namespace std; inline void rd(int &x){ int k; int m=0; x=0; for(;;){ k = getchar_unlocked(); if(k=='-'){ m=1; break; } if('0'<=k&&k<='9'){ x=k-'0'; break; } } for(;;){ k = getchar_unlocked(); if(k<'0'||k>'9'){ break; } x=x*10+k-'0'; } if(m){ x=-x; } } inline void wt_L(char a){ putchar_unlocked(a); } inline void wt_L(int x){ int s=0; int m=0; char f[10]; if(x<0){ m=1; x=-x; } while(x){ f[s++]=x%10; x/=10; } if(!s){ f[s++]=0; } if(m){ putchar_unlocked('-'); } while(s--){ putchar_unlocked(f[s]+'0'); } } template<class T, class U> inline T GCD_L(T a, U b){ T r; while(b){ r=a; a=b; b=r%a; } return a; } int A; int B; int dp[10100]; int main(){ int i; int res = 0; rd(A); rd(B); if(GCD_L(A, B)!=1){ wt_L(-1); wt_L('\n'); return 0; } dp[0] = 1; for(i=(A);i<(10100);i++){ dp[i] |= dp[i-A]; } for(i=(B);i<(10100);i++){ dp[i] |= dp[i-B]; } for(i=(0);i<(10100);i++){ if(dp[i]==0){ res++; } } wt_L(res); wt_L('\n'); return 0; } // cLay varsion 20200119-1 // --- original code --- // int A, B, dp[10100]; // { // int res = 0; // rd(A,B); // if(gcd(A,B)!=1) wt(-1), return 0; // dp[0] = 1; // rep(i,A,10100) dp[i] |= dp[i-A]; // rep(i,B,10100) dp[i] |= dp[i-B]; // rep(i,10100) if(dp[i]==0) res++; // wt(res); // }