結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-17 14:35:28
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 841 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-11-29 20:16:42
合計ジャッジ時間 33,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
31,960 KB
testcase_01 AC 26 ms
23,808 KB
testcase_02 AC 189 ms
24,064 KB
testcase_03 AC 150 ms
38,016 KB
testcase_04 AC 57 ms
34,044 KB
testcase_05 AC 1,773 ms
23,908 KB
testcase_06 TLE -
testcase_07 AC 25 ms
23,808 KB
testcase_08 TLE -
testcase_09 AC 387 ms
23,904 KB
testcase_10 AC 1,982 ms
31,680 KB
testcase_11 AC 602 ms
37,852 KB
testcase_12 AC 25 ms
23,808 KB
testcase_13 AC 504 ms
31,556 KB
testcase_14 TLE -
testcase_15 AC 603 ms
18,656 KB
testcase_16 AC 25 ms
18,432 KB
testcase_17 AC 104 ms
18,688 KB
testcase_18 TLE -
testcase_19 AC 26 ms
18,432 KB
testcase_20 AC 25 ms
18,688 KB
testcase_21 TLE -
testcase_22 AC 25 ms
18,432 KB
testcase_23 AC 25 ms
18,432 KB
testcase_24 AC 30 ms
18,560 KB
testcase_25 AC 23 ms
18,432 KB
testcase_26 AC 23 ms
18,432 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 AC 25 ms
18,432 KB
testcase_34 AC 25 ms
18,560 KB
testcase_35 AC 25 ms
40,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class C
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static long[] ReadL() => Array.ConvertAll(Console.ReadLine().Split(), long.Parse);
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var a = Read();
		Array.Sort(a);

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

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

		for (int i = a[0]; i < u.Length; i++)
		{
			if (u[i]) continue;

			for (int j = 1; j < i; j++)
			{
				if (u[j] && u[i - j])
				{
					u[i] = true;
					break;
				}
			}
		}
		return u.Count(x => !x);
	}

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