結果
問題 | No.3038 フィボナッチ数列の周期 |
ユーザー | 👑 testestest |
提出日時 | 2018-01-26 07:22:22 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 425 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 41,008 KB |
最終ジャッジ日時 | 2024-06-25 06:47:08 |
合計ジャッジ時間 | 4,428 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
コンパイルメッセージ
main.c:10:1: warning: return type defaults to 'int' [-Wimplicit-int] 10 | main(){ | ^~~~ main.c: In function 'main': main.c:13:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 13 | scanf("%d",&n); | ^~~~~ main.c:2:1: note: include '<stdio.h>' or provide a declaration of 'scanf' 1 | #include <assert.h> +++ |+#include <stdio.h> 2 | #define ll long long main.c:13:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 13 | scanf("%d",&n); | ^~~~~ main.c:13:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
ソースコード
#include <assert.h> #define ll long long #define T 1 #define F 0 #define bool int bool prime[10000000+10]; void makep(ll n){prime[0]=prime[1]=T;for(int i=2;i*i<=n;i++)if(!prime[i])for(int j=i*i;j<=n;j+=i)prime[j]=T;} #define N 10000000 main(){ makep(N); int n; scanf("%d",&n); assert(1<=n&&n<=1000); while(n--){ int p,k; assert(scanf("%d%d",&p,&k)==2); assert(2<=p&&p<=N&&!prime[p]); assert(1<=k&&k<=1000); } }