結果
問題 | No.358 も~っと!門松列 |
ユーザー | matsuyoshi30 |
提出日時 | 2017-02-23 00:02:20 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,099 bytes |
コンパイル時間 | 4,064 ms |
コンパイル使用メモリ | 77,564 KB |
実行使用メモリ | 41,188 KB |
最終ジャッジ日時 | 2024-12-30 19:31:49 |
合計ジャッジ時間 | 8,077 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 146 ms
40,756 KB |
testcase_01 | AC | 147 ms
40,884 KB |
testcase_02 | AC | 150 ms
40,860 KB |
testcase_03 | AC | 142 ms
40,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 152 ms
41,016 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 148 ms
40,768 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 151 ms
41,168 KB |
testcase_14 | WA | - |
testcase_15 | AC | 133 ms
40,156 KB |
testcase_16 | AC | 149 ms
40,832 KB |
testcase_17 | AC | 144 ms
40,896 KB |
testcase_18 | AC | 140 ms
40,900 KB |
testcase_19 | AC | 143 ms
40,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 146 ms
40,844 KB |
testcase_22 | WA | - |
ソースコード
import java.util.Scanner; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int a1 = in.nextInt(); int a2 = in.nextInt(); int a3 = in.nextInt(); int max = Math.max(a1, Math.max(a2, a3)); int min = Math.min(a1, Math.min(a2, a3)); if((a2 == max || a2 == min) && (a1 != a3)) { System.out.println("INF"); return; } if((a1 == a2) || (a2 == a3) || (a3 == a1)) { System.out.println(0); return; } int count = 0; for(int i=1; i<=max; i++) { int _a1 = a1 % i; int _a2 = a2 % i; int _a3 = a3 % i; if(_a2 == Math.max(_a1, Math.max(_a2, _a3)) && (_a1 != _a3)) { count++; } if(_a2 == Math.min(_a1, Math.min(_a2, _a3)) && (_a1 != _a3)) { count++; } } System.out.println(count); in.close(); } }