結果

問題 No.406 鴨等間隔の法則
ユーザー 👑 NachiaNachia
提出日時 2021-05-09 14:42:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-09-18 20:50:39
合計ジャッジ時間 3,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
75,392 KB
testcase_01 WA -
testcase_02 AC 43 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 79 ms
95,872 KB
testcase_05 AC 60 ms
71,808 KB
testcase_06 AC 56 ms
72,192 KB
testcase_07 AC 56 ms
73,216 KB
testcase_08 AC 78 ms
95,360 KB
testcase_09 AC 81 ms
99,584 KB
testcase_10 AC 56 ms
75,904 KB
testcase_11 AC 72 ms
91,648 KB
testcase_12 AC 61 ms
79,360 KB
testcase_13 AC 61 ms
78,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 44 ms
60,544 KB
testcase_17 AC 42 ms
59,648 KB
testcase_18 AC 44 ms
61,056 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 46 ms
63,744 KB
testcase_22 WA -
testcase_23 AC 65 ms
81,152 KB
testcase_24 WA -
testcase_25 AC 82 ms
100,480 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 68 ms
85,120 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 80 ms
99,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [int(a) for a in input().split()]
D = set([r-l for l,r in zip(X[:-1],X[1:])])
print("YES" if len(D) == 1 else "NO")
0