結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-23 22:41:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 113,340 KB
実行使用メモリ 27,172 KB
最終ジャッジ日時 2024-12-31 21:41:54
合計ジャッジ時間 3,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
26,204 KB
testcase_01 AC 32 ms
25,992 KB
testcase_02 AC 29 ms
23,932 KB
testcase_03 AC 29 ms
23,984 KB
testcase_04 AC 29 ms
24,084 KB
testcase_05 AC 29 ms
24,012 KB
testcase_06 AC 35 ms
25,480 KB
testcase_07 AC 29 ms
24,080 KB
testcase_08 AC 33 ms
25,352 KB
testcase_09 AC 29 ms
26,064 KB
testcase_10 AC 30 ms
24,140 KB
testcase_11 AC 30 ms
26,188 KB
testcase_12 AC 28 ms
23,908 KB
testcase_13 AC 31 ms
24,492 KB
testcase_14 AC 34 ms
25,260 KB
testcase_15 AC 31 ms
26,184 KB
testcase_16 AC 28 ms
24,244 KB
testcase_17 AC 29 ms
22,068 KB
testcase_18 AC 32 ms
24,160 KB
testcase_19 AC 29 ms
24,108 KB
testcase_20 AC 28 ms
24,164 KB
testcase_21 AC 35 ms
25,868 KB
testcase_22 AC 28 ms
24,172 KB
testcase_23 AC 28 ms
24,076 KB
testcase_24 AC 29 ms
25,988 KB
testcase_25 AC 29 ms
24,040 KB
testcase_26 AC 27 ms
24,076 KB
testcase_27 AC 28 ms
23,916 KB
testcase_28 AC 36 ms
26,760 KB
testcase_29 AC 28 ms
23,952 KB
testcase_30 AC 39 ms
27,132 KB
testcase_31 AC 30 ms
24,072 KB
testcase_32 AC 41 ms
27,172 KB
testcase_33 AC 27 ms
21,940 KB
testcase_34 AC 29 ms
24,076 KB
testcase_35 AC 29 ms
26,112 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 a = Read();
		Array.Sort(a);

		if (Gcd(Gcd(a[0], a[1]), a[2]) > 1) return "INF";
		if (Gcd(a[0], a[1]) > 1) (a[1], a[2]) = (a[2], a[1]);
		if (Gcd(a[0], a[1]) > 1) (a[0], a[2]) = (a[2], a[0]);

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

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

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