結果

問題 No.1352 Three Coins
ユーザー さかぽんさかぽん
提出日時 2021-01-17 15:12:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 108,888 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-12-23 09:36:14
合計ジャッジ時間 3,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
22,016 KB
testcase_01 AC 43 ms
22,016 KB
testcase_02 AC 56 ms
22,016 KB
testcase_03 AC 50 ms
21,888 KB
testcase_04 AC 54 ms
22,144 KB
testcase_05 AC 51 ms
22,400 KB
testcase_06 AC 52 ms
23,424 KB
testcase_07 AC 30 ms
17,920 KB
testcase_08 AC 51 ms
23,808 KB
testcase_09 AC 63 ms
22,400 KB
testcase_10 AC 47 ms
22,528 KB
testcase_11 AC 55 ms
22,400 KB
testcase_12 AC 29 ms
17,920 KB
testcase_13 AC 54 ms
22,144 KB
testcase_14 AC 53 ms
23,680 KB
testcase_15 AC 59 ms
21,888 KB
testcase_16 AC 30 ms
17,920 KB
testcase_17 AC 52 ms
22,144 KB
testcase_18 AC 49 ms
22,144 KB
testcase_19 AC 30 ms
17,536 KB
testcase_20 AC 30 ms
17,920 KB
testcase_21 AC 57 ms
24,576 KB
testcase_22 AC 30 ms
17,920 KB
testcase_23 AC 29 ms
17,664 KB
testcase_24 AC 51 ms
22,144 KB
testcase_25 AC 27 ms
17,792 KB
testcase_26 AC 30 ms
17,920 KB
testcase_27 AC 41 ms
22,144 KB
testcase_28 AC 53 ms
23,808 KB
testcase_29 AC 43 ms
22,144 KB
testcase_30 AC 56 ms
26,112 KB
testcase_31 AC 54 ms
22,272 KB
testcase_32 AC 57 ms
25,600 KB
testcase_33 AC 29 ms
17,920 KB
testcase_34 AC 40 ms
21,760 KB
testcase_35 AC 42 ms
22,144 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