結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | ytft |
提出日時 | 2021-05-07 18:57:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,349 ms / 2,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 3,063 ms |
コンパイル使用メモリ | 336,708 KB |
実行使用メモリ | 22,912 KB |
最終ジャッジ日時 | 2024-09-15 07:11:10 |
合計ジャッジ時間 | 16,038 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,302 ms
22,784 KB |
testcase_01 | AC | 1,316 ms
22,784 KB |
testcase_02 | AC | 1,323 ms
22,784 KB |
testcase_03 | AC | 997 ms
22,784 KB |
testcase_04 | AC | 786 ms
22,784 KB |
testcase_05 | AC | 1,217 ms
22,656 KB |
testcase_06 | AC | 1,160 ms
22,784 KB |
testcase_07 | AC | 1,349 ms
22,784 KB |
testcase_08 | AC | 99 ms
22,784 KB |
testcase_09 | AC | 107 ms
22,784 KB |
testcase_10 | AC | 94 ms
22,912 KB |
testcase_11 | AC | 85 ms
22,784 KB |
testcase_12 | AC | 90 ms
22,784 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <boost/multiprecision/cpp_int.hpp> namespace mp=boost::multiprecision; int main(){ int N; cin>>N; long long A,P; vector<int> M(5000001,1); M[1]=0; for(int i=2;i<5000001;i++){ if(M[i]){ for(int j=i*2;j<5000001;j+=i){ M[j]=0; } } } for(int i=0;i<N;i++){ cin>>A>>P; cout<<(M[P]*(1+(A%P!=0))-1)<<endl; } }