結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | kotatsugame |
提出日時 | 2020-07-31 23:54:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,198 ms / 2,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 65,452 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-07-06 22:15:05 |
合計ジャッジ時間 | 11,875 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,174 ms
8,448 KB |
testcase_01 | AC | 1,198 ms
8,576 KB |
testcase_02 | AC | 1,192 ms
8,576 KB |
testcase_03 | AC | 877 ms
8,576 KB |
testcase_04 | AC | 670 ms
8,576 KB |
testcase_05 | AC | 1,118 ms
8,576 KB |
testcase_06 | AC | 1,015 ms
8,576 KB |
testcase_07 | AC | 1,168 ms
8,576 KB |
testcase_08 | AC | 36 ms
8,704 KB |
testcase_09 | AC | 36 ms
8,516 KB |
testcase_10 | AC | 36 ms
8,576 KB |
testcase_11 | AC | 35 ms
8,576 KB |
testcase_12 | AC | 35 ms
8,576 KB |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int T; long A,P; bool isp[5<<20]; main() { isp[1]=true; for(int i=2;i<5<<20;i++)if(!isp[i]) { for(int j=i+i;j<5<<20;j+=i)isp[j]=true; } cin>>T; for(;T--;) { cin>>A>>P; if(!isp[P]) { A%=P; cout<<(A?1:0)<<endl; } else { cout<<-1<<endl; } } }