結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-17 14:35:28
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 841 bytes
コンパイル時間 1,180 ms
コンパイル使用メモリ 106,624 KB
実行使用メモリ 27,728 KB
最終ジャッジ日時 2024-05-07 06:00:48
合計ジャッジ時間 7,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,884 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 211 ms
18,944 KB
testcase_03 AC 168 ms
18,688 KB
testcase_04 AC 64 ms
18,944 KB
testcase_05 AC 1,935 ms
18,528 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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