結果

問題 No.1717 Levi-Civita Triangle
ユーザー KudeKude
提出日時 2021-10-22 23:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 115,728 KB
最終ジャッジ日時 2024-09-23 07:38:52
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,752 KB
testcase_01 AC 38 ms
53,280 KB
testcase_02 AC 38 ms
52,444 KB
testcase_03 AC 37 ms
53,420 KB
testcase_04 AC 37 ms
52,356 KB
testcase_05 AC 42 ms
60,960 KB
testcase_06 AC 45 ms
65,080 KB
testcase_07 AC 68 ms
92,140 KB
testcase_08 AC 36 ms
52,116 KB
testcase_09 AC 37 ms
52,292 KB
testcase_10 AC 42 ms
60,512 KB
testcase_11 AC 44 ms
64,668 KB
testcase_12 AC 56 ms
77,872 KB
testcase_13 AC 38 ms
53,316 KB
testcase_14 AC 37 ms
52,888 KB
testcase_15 AC 39 ms
52,908 KB
testcase_16 AC 46 ms
64,548 KB
testcase_17 AC 79 ms
102,924 KB
testcase_18 AC 38 ms
52,188 KB
testcase_19 AC 37 ms
52,452 KB
testcase_20 AC 38 ms
52,764 KB
testcase_21 AC 47 ms
64,600 KB
testcase_22 AC 69 ms
91,492 KB
testcase_23 AC 38 ms
53,892 KB
testcase_24 AC 38 ms
52,080 KB
testcase_25 AC 43 ms
60,004 KB
testcase_26 AC 45 ms
61,552 KB
testcase_27 AC 54 ms
73,332 KB
testcase_28 AC 37 ms
52,624 KB
testcase_29 AC 37 ms
52,192 KB
testcase_30 AC 42 ms
59,888 KB
testcase_31 AC 46 ms
63,464 KB
testcase_32 AC 80 ms
104,304 KB
testcase_33 AC 88 ms
114,652 KB
testcase_34 AC 87 ms
115,156 KB
testcase_35 AC 89 ms
115,020 KB
testcase_36 AC 89 ms
114,536 KB
testcase_37 AC 89 ms
115,728 KB
testcase_38 AC 91 ms
114,648 KB
testcase_39 AC 89 ms
114,884 KB
testcase_40 AC 89 ms
114,704 KB
testcase_41 AC 89 ms
114,496 KB
testcase_42 AC 89 ms
115,156 KB
testcase_43 AC 89 ms
114,960 KB
testcase_44 AC 88 ms
114,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
d = []
for x, y in zip(a, a[1:]):
    d.append((y - x + 1) % 3 - 1)

m = len(d)
for i in range(0, m, 2):
    if d[i] != d[i + 1]:
        print(0)
        exit(0)
for i in range(0, m - 2, 2):
    if d[i] != -d[i + 2]:
        print(0)
        exit(0)
print(d[m - 1] % 3)
0