結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-17 15:12:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 110,512 KB
実行使用メモリ 33,852 KB
最終ジャッジ日時 2024-06-02 12:08:58
合計ジャッジ時間 3,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,056 KB
testcase_01 AC 35 ms
28,136 KB
testcase_02 AC 51 ms
26,196 KB
testcase_03 AC 43 ms
30,140 KB
testcase_04 AC 47 ms
26,240 KB
testcase_05 AC 45 ms
28,428 KB
testcase_06 AC 45 ms
31,564 KB
testcase_07 AC 25 ms
26,140 KB
testcase_08 AC 41 ms
27,956 KB
testcase_09 AC 56 ms
30,308 KB
testcase_10 AC 43 ms
30,688 KB
testcase_11 AC 45 ms
30,256 KB
testcase_12 AC 24 ms
24,172 KB
testcase_13 AC 47 ms
30,384 KB
testcase_14 AC 41 ms
29,680 KB
testcase_15 AC 49 ms
30,256 KB
testcase_16 AC 24 ms
24,196 KB
testcase_17 AC 44 ms
28,236 KB
testcase_18 AC 44 ms
28,440 KB
testcase_19 AC 25 ms
24,040 KB
testcase_20 AC 24 ms
23,984 KB
testcase_21 AC 46 ms
30,972 KB
testcase_22 AC 25 ms
25,852 KB
testcase_23 AC 25 ms
25,964 KB
testcase_24 AC 44 ms
30,092 KB
testcase_25 AC 26 ms
23,784 KB
testcase_26 AC 25 ms
24,072 KB
testcase_27 AC 34 ms
28,296 KB
testcase_28 AC 47 ms
30,032 KB
testcase_29 AC 38 ms
27,868 KB
testcase_30 AC 45 ms
33,852 KB
testcase_31 AC 48 ms
28,296 KB
testcase_32 AC 47 ms
33,836 KB
testcase_33 AC 25 ms
23,680 KB
testcase_34 AC 35 ms
28,268 KB
testcase_35 AC 35 ms
28,032 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 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] + 5000000];
		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