結果

問題 No.1352 Three Coins
ユーザー ks2mks2m
提出日時 2021-01-17 14:35:29
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,682 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 84,700 KB
最終ジャッジ日時 2024-11-29 20:17:13
合計ジャッジ時間 12,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
46,572 KB
testcase_01 AC 106 ms
40,264 KB
testcase_02 AC 154 ms
41,604 KB
testcase_03 AC 162 ms
41,912 KB
testcase_04 AC 144 ms
41,168 KB
testcase_05 AC 173 ms
42,616 KB
testcase_06 TLE -
testcase_07 AC 108 ms
39,904 KB
testcase_08 WA -
testcase_09 AC 173 ms
41,772 KB
testcase_10 AC 175 ms
42,776 KB
testcase_11 AC 404 ms
42,556 KB
testcase_12 AC 112 ms
40,860 KB
testcase_13 AC 165 ms
42,548 KB
testcase_14 WA -
testcase_15 AC 726 ms
42,832 KB
testcase_16 AC 114 ms
41,196 KB
testcase_17 AC 142 ms
41,204 KB
testcase_18 AC 235 ms
42,776 KB
testcase_19 AC 106 ms
41,160 KB
testcase_20 AC 114 ms
41,180 KB
testcase_21 AC 243 ms
42,728 KB
testcase_22 AC 113 ms
41,040 KB
testcase_23 AC 113 ms
40,200 KB
testcase_24 AC 123 ms
41,432 KB
testcase_25 AC 112 ms
40,180 KB
testcase_26 AC 115 ms
40,524 KB
testcase_27 AC 117 ms
41,160 KB
testcase_28 AC 460 ms
42,632 KB
testcase_29 AC 156 ms
41,484 KB
testcase_30 WA -
testcase_31 AC 204 ms
41,372 KB
testcase_32 AC 199 ms
42,664 KB
testcase_33 AC 116 ms
41,236 KB
testcase_34 AC 108 ms
39,980 KB
testcase_35 AC 121 ms
84,700 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[3][a[2]];
		for (int i = 0; i < 3; i++) {
			Arrays.fill(c[i], Integer.MAX_VALUE);
			int i2 = (i + 1) % 3;
			for (int j = 1; j < a[i]; j++) {
				int x = 0;
				int end = a[i] * a[i2] / gcd(a[i], a[i2]);
				while (x < end) {
					x += a[i2];
					if (x % a[i] == j) {
						c[i][j] = Math.min(c[i][j], x / a[i]);
						break;
					}
				}
			}
		}

		int lcm = 1;
		for (int i = 0; i < 3; i++) {
			lcm = lcm(lcm, a[i]);
		}
		for (int i = 1; i < 3; i++) {
			for (int j = 1; j < a[0]; j++) {
				for (int j2 = 1; j2 < a[i]; j2++) {
					if (c[i][j2] == Integer.MAX_VALUE) {
						continue;
					}
					int x = a[i] * c[i][j2] + j2;
					int end = lcm * 2;
					if (c[0][j] != Integer.MAX_VALUE) {
						end = Math.min(end, a[0] * c[0][j] + j);
					}
					while (x < end) {
						if (x % a[0] == j) {
							c[0][j] = Math.min(c[0][j], x / a[0]);
							break;
						}
						x += a[i];
					}
				}
			}
		}

		int ans = 0;
		for (int i = 1; i < a[0]; i++) {
			if (c[0][i] == Integer.MAX_VALUE) {
				System.out.println("INF");
				return;
			}
			ans += c[0][i];
		}
		System.out.println(ans);
	}

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

	static int lcm(int a, int b) {
		return a * b / gcd(a, b);
	}
}
0