結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,064 KB
testcase_01 AC 26 ms
37,632 KB
testcase_02 AC 178 ms
23,808 KB
testcase_03 AC 145 ms
38,016 KB
testcase_04 AC 55 ms
24,064 KB
testcase_05 AC 1,659 ms
37,596 KB
testcase_06 TLE -
testcase_07 AC 26 ms
35,840 KB
testcase_08 TLE -
testcase_09 AC 363 ms
23,908 KB
testcase_10 AC 1,830 ms
23,772 KB
testcase_11 AC 558 ms
37,728 KB
testcase_12 AC 26 ms
27,212 KB
testcase_13 AC 515 ms
23,896 KB
testcase_14 TLE -
testcase_15 AC 571 ms
18,532 KB
testcase_16 AC 26 ms
18,560 KB
testcase_17 AC 103 ms
18,816 KB
testcase_18 TLE -
testcase_19 AC 27 ms
18,560 KB
testcase_20 AC 25 ms
18,432 KB
testcase_21 TLE -
testcase_22 AC 27 ms
18,560 KB
testcase_23 AC 25 ms
18,432 KB
testcase_24 AC 31 ms
18,560 KB
testcase_25 AC 25 ms
18,560 KB
testcase_26 AC 25 ms
18,304 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 AC 26 ms
18,304 KB
testcase_34 AC 27 ms
18,688 KB
testcase_35 AC 27 ms
39,552 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 = 1; 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