結果
問題 | No.339 何人が回答したのか |
ユーザー | takeya_okino |
提出日時 | 2017-07-09 18:48:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 3,639 ms |
コンパイル使用メモリ | 74,612 KB |
実行使用メモリ | 56,508 KB |
最終ジャッジ日時 | 2024-10-07 04:49:46 |
合計ジャッジ時間 | 12,621 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 136 ms
54,004 KB |
testcase_02 | AC | 132 ms
53,888 KB |
testcase_03 | AC | 132 ms
54,040 KB |
testcase_04 | AC | 133 ms
53,984 KB |
testcase_05 | AC | 131 ms
53,964 KB |
testcase_06 | AC | 133 ms
54,304 KB |
testcase_07 | AC | 132 ms
53,956 KB |
testcase_08 | AC | 129 ms
54,232 KB |
testcase_09 | AC | 132 ms
54,260 KB |
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 | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 116 ms
52,868 KB |
testcase_61 | AC | 130 ms
54,336 KB |
testcase_62 | AC | 130 ms
54,008 KB |
testcase_63 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] a = new int[N]; for(int i = 0; i < N; i++) { a[i] = sc.nextInt(); } int ans = 0; for(int x = 1; x < 100; x++) { boolean flg = true; for(int i = 0; i < N; i++) { if((x * a[i]) % 100 != 0) { flg = false; break; } } if(flg) { ans = x; break; } } System.out.println(ans); } }