結果

問題 No.1352 Three Coins
ユーザー ks2mks2m
提出日時 2021-01-17 13:31:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 56,440 KB
最終ジャッジ日時 2024-05-07 05:55:11
合計ジャッジ時間 8,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,404 KB
testcase_01 AC 140 ms
41,340 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 137 ms
41,284 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 135 ms
41,184 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 140 ms
41,336 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 135 ms
41,344 KB
testcase_20 AC 138 ms
40,964 KB
testcase_21 WA -
testcase_22 AC 133 ms
41,292 KB
testcase_23 AC 137 ms
41,424 KB
testcase_24 WA -
testcase_25 AC 140 ms
41,324 KB
testcase_26 AC 142 ms
40,952 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 151 ms
41,092 KB
testcase_32 AC 188 ms
41,460 KB
testcase_33 AC 147 ms
41,432 KB
testcase_34 AC 147 ms
41,188 KB
testcase_35 AC 152 ms
41,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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++) {
			ans += c[i];
		}
		System.out.println(ans);
	}

	static int gcd(int a, int b) {
		return b == 0 ? a : gcd(b, a % b);
	}
}
0