結果
問題 | No.1717 Levi-Civita Triangle |
ユーザー | bluemegane |
提出日時 | 2021-11-04 14:46:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 107,080 KB |
実行使用メモリ | 42,088 KB |
最終ジャッジ日時 | 2024-10-14 12:55:38 |
合計ジャッジ時間 | 6,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,788 KB |
testcase_01 | WA | - |
testcase_02 | AC | 26 ms
23,784 KB |
testcase_03 | AC | 27 ms
23,964 KB |
testcase_04 | AC | 27 ms
23,720 KB |
testcase_05 | AC | 31 ms
24,048 KB |
testcase_06 | WA | - |
testcase_07 | AC | 57 ms
31,036 KB |
testcase_08 | AC | 26 ms
24,096 KB |
testcase_09 | AC | 27 ms
23,912 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 28 ms
25,956 KB |
testcase_14 | AC | 26 ms
25,828 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 64 ms
30,196 KB |
testcase_18 | AC | 27 ms
23,788 KB |
testcase_19 | WA | - |
testcase_20 | AC | 30 ms
24,428 KB |
testcase_21 | AC | 32 ms
22,960 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 31 ms
24,428 KB |
testcase_26 | WA | - |
testcase_27 | AC | 41 ms
27,744 KB |
testcase_28 | AC | 26 ms
24,116 KB |
testcase_29 | AC | 25 ms
23,712 KB |
testcase_30 | AC | 31 ms
24,268 KB |
testcase_31 | AC | 32 ms
24,556 KB |
testcase_32 | AC | 66 ms
30,192 KB |
testcase_33 | AC | 83 ms
40,048 KB |
testcase_34 | AC | 83 ms
37,996 KB |
testcase_35 | AC | 81 ms
37,736 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 82 ms
39,912 KB |
testcase_39 | AC | 83 ms
39,916 KB |
testcase_40 | AC | 83 ms
38,124 KB |
testcase_41 | AC | 82 ms
42,088 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 84 ms
39,920 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class hello { public static int[] a; public static int n; static void Main() { n = int.Parse(Console.ReadLine().Trim()); string[] line = Console.ReadLine().Trim().Split(' '); a = Array.ConvertAll(line, int.Parse); getAns(); } static int getNext ( int p , int pre ) { var t = pre * 100 + a[p] * 10 + a[p + 1]; if (t == 12 | t == 120 | t == 201) return 1; else if (t == 21 | t == 102 | t == 210) return 2; return 0; } static void getAns () { var pre = getNext(1, a[0]); for (int i = 1; i < n; i++) { var w = getNext(2 * i + 1, pre); pre = w; } Console.WriteLine(pre); } }