結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-23 23:02:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 111,444 KB
実行使用メモリ 27,808 KB
最終ジャッジ日時 2025-01-01 17:29:22
合計ジャッジ時間 3,574 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
26,744 KB
testcase_01 AC 27 ms
24,460 KB
testcase_02 AC 27 ms
24,716 KB
testcase_03 AC 27 ms
24,840 KB
testcase_04 AC 27 ms
24,848 KB
testcase_05 AC 27 ms
24,528 KB
testcase_06 AC 31 ms
25,992 KB
testcase_07 AC 26 ms
24,716 KB
testcase_08 AC 31 ms
25,752 KB
testcase_09 AC 27 ms
26,576 KB
testcase_10 AC 27 ms
26,832 KB
testcase_11 AC 26 ms
24,528 KB
testcase_12 AC 26 ms
24,836 KB
testcase_13 AC 27 ms
22,840 KB
testcase_14 AC 30 ms
25,580 KB
testcase_15 AC 28 ms
24,788 KB
testcase_16 AC 27 ms
26,724 KB
testcase_17 AC 26 ms
24,464 KB
testcase_18 AC 27 ms
24,664 KB
testcase_19 AC 27 ms
24,756 KB
testcase_20 AC 27 ms
24,816 KB
testcase_21 AC 32 ms
26,548 KB
testcase_22 AC 26 ms
24,716 KB
testcase_23 AC 27 ms
26,612 KB
testcase_24 AC 26 ms
24,712 KB
testcase_25 AC 26 ms
24,584 KB
testcase_26 AC 27 ms
24,680 KB
testcase_27 AC 28 ms
24,584 KB
testcase_28 AC 36 ms
27,468 KB
testcase_29 AC 27 ms
24,836 KB
testcase_30 AC 40 ms
27,656 KB
testcase_31 AC 26 ms
24,652 KB
testcase_32 AC 39 ms
27,808 KB
testcase_33 AC 26 ms
24,716 KB
testcase_34 AC 27 ms
24,816 KB
testcase_35 AC 27 ms
26,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class C
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var v = Read();
		Array.Sort(v);
		var (a, b, c) = (v[0], v[1], v[2]);

		if (Gcd(Gcd(a, b), c) > 1) return "INF";
		if (Gcd(a, b) > 1) (b, c) = (c, b);
		if (Gcd(a, b) > 1) (a, c) = (c, a);

		var u = new bool[a * b];
		for (int k = 0; k < a; k++)
			for (int i = k * b; i < u.Length; i += a)
				u[i] = true;

		var r = 0;
		for (int k = 0; k < c; k++)
			for (int i = k; i < u.Length && !u[i]; i += c)
				r++;
		return r;
	}

	static int Gcd(int a, int b) { for (int r; (r = a % b) > 0; a = b, b = r) ; return b; }
}
0