結果
問題 | No.1352 Three Coins |
ユーザー | ks2m |
提出日時 | 2021-01-17 13:38:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 3,003 ms |
コンパイル使用メモリ | 77,892 KB |
実行使用メモリ | 56,184 KB |
最終ジャッジ日時 | 2024-05-07 05:55:56 |
合計ジャッジ時間 | 9,211 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,152 KB |
testcase_01 | AC | 136 ms
53,640 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 130 ms
41,336 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 133 ms
41,408 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 135 ms
41,184 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 136 ms
41,376 KB |
testcase_20 | AC | 134 ms
41,084 KB |
testcase_21 | WA | - |
testcase_22 | AC | 133 ms
41,380 KB |
testcase_23 | AC | 135 ms
41,416 KB |
testcase_24 | WA | - |
testcase_25 | AC | 133 ms
41,304 KB |
testcase_26 | AC | 133 ms
40,956 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 136 ms
41,396 KB |
testcase_32 | AC | 171 ms
41,588 KB |
testcase_33 | AC | 131 ms
41,304 KB |
testcase_34 | AC | 133 ms
40,944 KB |
testcase_35 | AC | 133 ms
41,288 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int[] a = new int[3]; for (int i = 0; i < 3; i++) { a[i] = sc.nextInt(); } sc.close(); int g = 0; for (int i = 0; i < 3; i++) { g = gcd(g, a[i]); } if (g > 1) { System.out.println("INF"); return; } Arrays.sort(a); int[] c = new int[a[0]]; Arrays.fill(c, Integer.MAX_VALUE); for (int i = 1; i < 3; i++) { for (int j = 1; j < c.length; j++) { int x = 0; int end = a[0] * a[i] / gcd(a[0], a[i]); while (x < end) { x += a[i]; if (x % a[0] == j) { c[j] = Math.min(c[j], x / a[0]); break; } } } } int ans = 0; for (int i = 1; i < c.length; i++) { if (c[i] == Integer.MAX_VALUE) { System.out.println("INF"); return; } ans += c[i]; } System.out.println(ans); } static int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); } }