結果

問題 No.406 鴨等間隔の法則
ユーザー kokoa1046kokoa1046
提出日時 2017-09-23 20:43:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 23,784 KB
最終ジャッジ日時 2024-07-07 12:10:56
合計ジャッジ時間 3,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
16,416 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 99 ms
22,396 KB
testcase_05 AC 52 ms
16,652 KB
testcase_06 AC 53 ms
15,756 KB
testcase_07 AC 53 ms
16,824 KB
testcase_08 AC 104 ms
22,960 KB
testcase_09 AC 108 ms
23,324 KB
testcase_10 AC 61 ms
16,400 KB
testcase_11 AC 87 ms
18,636 KB
testcase_12 AC 65 ms
17,472 KB
testcase_13 AC 62 ms
16,320 KB
testcase_14 AC 100 ms
22,528 KB
testcase_15 AC 27 ms
11,136 KB
testcase_16 AC 29 ms
11,904 KB
testcase_17 AC 28 ms
11,136 KB
testcase_18 AC 30 ms
12,032 KB
testcase_19 AC 32 ms
12,160 KB
testcase_20 AC 34 ms
12,544 KB
testcase_21 AC 33 ms
12,544 KB
testcase_22 AC 45 ms
15,504 KB
testcase_23 AC 68 ms
17,948 KB
testcase_24 AC 80 ms
18,556 KB
testcase_25 AC 107 ms
23,556 KB
testcase_26 AC 108 ms
23,784 KB
testcase_27 AC 59 ms
21,408 KB
testcase_28 AC 83 ms
23,300 KB
testcase_29 AC 113 ms
23,696 KB
testcase_30 AC 111 ms
23,492 KB
testcase_31 AC 103 ms
22,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Here your code !
input()
nums = list(map(int, input().split()))
nums_uniq = list(set(nums))
flag = False
nums.sort()
nums_uniq.sort()
if nums == nums_uniq:
    diff=abs(nums[0]-nums[1])
    curNum=nums[1]
    flag = True
    for i in nums:
        if abs(curNum-i)==diff:
            curNum = i
        else:
            flag=False
            break
if flag:
    print("YES")
else:
    print("NO")
    
        
    
0