Submission #00121
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include<stdio.h> int main(){ int n; scanf ( "%d" ,&n); long long a[n]; for ( int i=0;i<n;i++){ scanf ( "%lld" ,&a[i]); } for ( int i=0;i<n;i++){ for ( int j=2;j<n;j++){ if (a[i]%j == 0) a[i] = 0; } } for ( int i=0;i<n;i++){ if (a[i]==0){ printf ( "Bad\n" ); } else if (a[i]==1){ printf ( "Bad\n" ); } else { printf ( "Good\n" ); } } } |
ステータス
項目 | データ |
---|---|
問題 | 0010 - 大きな素数 |
ユーザー名 | yu184743 |
投稿日時 | 2024-05-29 17:37:14 |
言語 | C |
状態 | Wrong Answer |
得点 | 0 |
ソースコード長 | 481 Byte |
最大実行時間 | 30 ms |
最大メモリ使用量 | 584 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | ALL | 0 / 4 | * |
2 | 部分点1 | 0 / 6 | insmall* |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # | |
---|---|---|---|---|---|
in1.txt | WA | 14 ms | 376 KB |
1
|
|
in2.txt | WA | 15 ms | 276 KB |
1
|
|
in3.txt | WA | 16 ms | 332 KB |
1
|
|
in4.txt | AC | 19 ms | 380 KB |
1
|
|
in5.txt | WA | 14 ms | 340 KB |
1
|
|
insample1.txt | WA | 23 ms | 352 KB |
1
|
|
insmall1.txt | WA | 30 ms | 536 KB |
1
|
2
|
insmall2.txt | WA | 20 ms | 584 KB |
1
|
2
|