結果
問題 | No.358 も~っと!門松列 |
ユーザー | yun_app |
提出日時 | 2016-05-10 22:22:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 1,000 ms |
コード長 | 1,245 bytes |
コンパイル時間 | 2,126 ms |
コンパイル使用メモリ | 77,288 KB |
実行使用メモリ | 50,316 KB |
最終ジャッジ日時 | 2024-10-05 13:36:14 |
合計ジャッジ時間 | 4,162 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,200 KB |
testcase_01 | AC | 52 ms
49,848 KB |
testcase_02 | AC | 52 ms
49,964 KB |
testcase_03 | AC | 54 ms
50,304 KB |
testcase_04 | AC | 53 ms
49,908 KB |
testcase_05 | AC | 53 ms
50,308 KB |
testcase_06 | AC | 52 ms
50,216 KB |
testcase_07 | AC | 53 ms
50,076 KB |
testcase_08 | AC | 53 ms
50,248 KB |
testcase_09 | AC | 54 ms
50,236 KB |
testcase_10 | AC | 53 ms
49,960 KB |
testcase_11 | AC | 53 ms
50,156 KB |
testcase_12 | AC | 53 ms
50,304 KB |
testcase_13 | AC | 54 ms
49,892 KB |
testcase_14 | AC | 54 ms
50,252 KB |
testcase_15 | AC | 53 ms
50,164 KB |
testcase_16 | AC | 52 ms
49,892 KB |
testcase_17 | AC | 54 ms
50,200 KB |
testcase_18 | AC | 52 ms
50,316 KB |
testcase_19 | AC | 53 ms
50,028 KB |
testcase_20 | AC | 54 ms
50,192 KB |
testcase_21 | AC | 52 ms
49,984 KB |
testcase_22 | AC | 52 ms
50,240 KB |
ソースコード
/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] lines = br.readLine().split(" "); int a1 = Integer.parseInt(lines[0]); int a2 = Integer.parseInt(lines[1]); int a3 = Integer.parseInt(lines[2]); if(a1 == a2 || a1 == a3 || a2 == a3){ System.out.println("0"); return; } if((a2 < a1 && a2 < a3) || (a2 > a1 && a2 > a3)){ System.out.println("INF"); return; } int max = Math.max(Math.max(a1,a2),a3); int ans = 0; for(int i=1;i<=max;i++){ if(check(a1%i,a2%i,a3%i)){ ++ans; } } System.out.println(ans); } public static boolean check(int a1,int a2,int a3){ return (a1 != a3) && (a2 != a3) && (a1 != a2) && ((a2 < a1 && a2 < a3) || (a2 > a1 && a2 > a3)); } }