結果

問題 No.406 鴨等間隔の法則
ユーザー convexineqconvexineq
提出日時 2021-02-10 00:10:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-07-07 05:36:01
合計ジャッジ時間 3,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
67,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,328 KB
testcase_04 AC 76 ms
79,616 KB
testcase_05 AC 53 ms
65,880 KB
testcase_06 AC 55 ms
66,048 KB
testcase_07 AC 54 ms
67,200 KB
testcase_08 AC 78 ms
79,488 KB
testcase_09 AC 81 ms
82,176 KB
testcase_10 AC 56 ms
67,840 KB
testcase_11 AC 71 ms
77,056 KB
testcase_12 AC 60 ms
69,632 KB
testcase_13 AC 59 ms
69,504 KB
testcase_14 AC 78 ms
81,280 KB
testcase_15 AC 46 ms
59,904 KB
testcase_16 AC 43 ms
58,880 KB
testcase_17 AC 43 ms
58,460 KB
testcase_18 AC 43 ms
59,264 KB
testcase_19 AC 47 ms
61,056 KB
testcase_20 AC 48 ms
61,440 KB
testcase_21 AC 45 ms
60,336 KB
testcase_22 AC 52 ms
64,768 KB
testcase_23 AC 62 ms
70,912 KB
testcase_24 AC 72 ms
78,592 KB
testcase_25 AC 81 ms
82,176 KB
testcase_26 AC 84 ms
85,248 KB
testcase_27 AC 67 ms
83,968 KB
testcase_28 AC 65 ms
82,176 KB
testcase_29 AC 82 ms
85,376 KB
testcase_30 AC 81 ms
84,864 KB
testcase_31 AC 78 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(map(int,input().split()))
ok = any(ai != a[0] for ai in a) and all(a[i+1]-a[i] == a[1]-a[0] for i in range(n-1))
print("YES" if ok else "NO")
0