結果
問題 | No.1352 Three Coins |
ユーザー | さかぽん |
提出日時 | 2021-01-17 14:54:58 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 910 bytes |
コンパイル時間 | 1,008 ms |
コンパイル使用メモリ | 112,176 KB |
実行使用メモリ | 31,956 KB |
最終ジャッジ日時 | 2024-05-07 06:02:03 |
合計ジャッジ時間 | 6,824 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
31,700 KB |
testcase_01 | AC | 30 ms
18,944 KB |
testcase_02 | AC | 181 ms
18,688 KB |
testcase_03 | AC | 173 ms
18,816 KB |
testcase_04 | AC | 59 ms
18,816 KB |
testcase_05 | AC | 1,797 ms
18,916 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.
ソースコード
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 < 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; 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; } }