結果

問題 No.406 鴨等間隔の法則
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-09 10:51:12
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 23,792 KB
最終ジャッジ日時 2024-11-07 05:57:40
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
13,484 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 WA -
testcase_04 AC 137 ms
22,092 KB
testcase_05 AC 54 ms
11,988 KB
testcase_06 AC 57 ms
12,596 KB
testcase_07 AC 57 ms
13,016 KB
testcase_08 AC 135 ms
22,176 KB
testcase_09 AC 150 ms
23,792 KB
testcase_10 AC 63 ms
13,220 KB
testcase_11 AC 115 ms
19,908 KB
testcase_12 AC 74 ms
14,984 KB
testcase_13 AC 72 ms
14,672 KB
testcase_14 AC 122 ms
21,580 KB
testcase_15 WA -
testcase_16 AC 20 ms
7,524 KB
testcase_17 AC 16 ms
7,040 KB
testcase_18 AC 19 ms
7,572 KB
testcase_19 AC 22 ms
7,620 KB
testcase_20 AC 27 ms
8,460 KB
testcase_21 AC 26 ms
8,352 KB
testcase_22 AC 40 ms
10,276 KB
testcase_23 AC 81 ms
15,780 KB
testcase_24 AC 109 ms
17,384 KB
testcase_25 AC 153 ms
23,452 KB
testcase_26 AC 154 ms
21,556 KB
testcase_27 WA -
testcase_28 AC 110 ms
23,716 KB
testcase_29 AC 151 ms
21,432 KB
testcase_30 AC 150 ms
21,084 KB
testcase_31 AC 145 ms
23,604 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]
 for b in binded:
   if b != head:
     print "NO"
     sys.exit(0)
 print "YES"
0