結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-23 22:41:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 112,868 KB
実行使用メモリ 28,044 KB
最終ジャッジ日時 2024-06-10 08:02:29
合計ジャッジ時間 3,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
26,240 KB
testcase_01 AC 28 ms
24,072 KB
testcase_02 AC 28 ms
26,120 KB
testcase_03 AC 26 ms
21,796 KB
testcase_04 AC 27 ms
25,728 KB
testcase_05 AC 30 ms
26,188 KB
testcase_06 AC 33 ms
27,512 KB
testcase_07 AC 27 ms
22,064 KB
testcase_08 AC 32 ms
25,264 KB
testcase_09 AC 28 ms
26,056 KB
testcase_10 AC 29 ms
23,760 KB
testcase_11 AC 28 ms
23,888 KB
testcase_12 AC 27 ms
21,948 KB
testcase_13 AC 29 ms
24,332 KB
testcase_14 AC 31 ms
24,972 KB
testcase_15 AC 29 ms
25,936 KB
testcase_16 AC 28 ms
23,948 KB
testcase_17 AC 28 ms
23,832 KB
testcase_18 AC 27 ms
24,268 KB
testcase_19 AC 28 ms
24,080 KB
testcase_20 AC 27 ms
26,116 KB
testcase_21 AC 35 ms
28,044 KB
testcase_22 AC 27 ms
24,076 KB
testcase_23 AC 27 ms
23,820 KB
testcase_24 AC 28 ms
21,940 KB
testcase_25 AC 27 ms
26,092 KB
testcase_26 AC 27 ms
23,820 KB
testcase_27 AC 27 ms
23,852 KB
testcase_28 AC 36 ms
26,788 KB
testcase_29 AC 27 ms
23,984 KB
testcase_30 AC 38 ms
27,112 KB
testcase_31 AC 28 ms
25,804 KB
testcase_32 AC 40 ms
27,184 KB
testcase_33 AC 27 ms
24,116 KB
testcase_34 AC 27 ms
22,068 KB
testcase_35 AC 27 ms
24,076 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