結果

問題 No.406 鴨等間隔の法則
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-09 10:54:20
言語 Python2
(2.7.18)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 23,660 KB
最終ジャッジ日時 2024-07-07 11:45:11
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
13,484 KB
testcase_01 AC 12 ms
6,272 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 150 ms
22,092 KB
testcase_05 AC 56 ms
12,116 KB
testcase_06 AC 59 ms
12,592 KB
testcase_07 AC 60 ms
12,892 KB
testcase_08 AC 147 ms
21,916 KB
testcase_09 AC 159 ms
23,660 KB
testcase_10 AC 65 ms
13,348 KB
testcase_11 AC 120 ms
20,072 KB
testcase_12 AC 79 ms
14,916 KB
testcase_13 AC 74 ms
14,544 KB
testcase_14 AC 138 ms
21,400 KB
testcase_15 AC 18 ms
7,072 KB
testcase_16 AC 21 ms
7,524 KB
testcase_17 AC 17 ms
7,040 KB
testcase_18 AC 20 ms
7,580 KB
testcase_19 AC 23 ms
7,744 KB
testcase_20 AC 28 ms
8,340 KB
testcase_21 AC 27 ms
8,356 KB
testcase_22 AC 41 ms
10,020 KB
testcase_23 AC 85 ms
15,396 KB
testcase_24 AC 114 ms
17,388 KB
testcase_25 AC 163 ms
23,196 KB
testcase_26 AC 171 ms
21,432 KB
testcase_27 AC 113 ms
21,556 KB
testcase_28 AC 118 ms
23,584 KB
testcase_29 AC 166 ms
21,556 KB
testcase_30 AC 161 ms
21,340 KB
testcase_31 AC 154 ms
23,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import os

import math
import copy
num = 0
for i, line in enumerate(sys.stdin):
 if i == 0:
   num = int(line)
   continue
 line = line.strip()
 li = map(int ,filter(lambda x:x != '', line.split(" ")))
 li = sorted(li)
 li2 = copy.copy(li)
 li2.insert(0, 0)
 binded = [bind[0] - bind[1] for bind in zip(li, li2)]
 binded.pop(0)
 head = binded[0]
 if head == 0:
  print "NO"
  sys.exit(0)
 for b in binded:
   if b != head:
     print "NO"
     sys.exit(0)
 print "YES"
0