結果

問題 No.178 美しいWhitespace (1)
ユーザー あかりきあかりき
提出日時 2021-02-12 12:21:02
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 259 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-07-19 06:32:02
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 MLE -
testcase_05 AC 57 ms
63,744 KB
testcase_06 AC 56 ms
63,360 KB
testcase_07 AC 61 ms
63,232 KB
testcase_08 AC 63 ms
63,360 KB
testcase_09 MLE -
testcase_10 AC 59 ms
63,616 KB
testcase_11 AC 61 ms
63,232 KB
testcase_12 AC 59 ms
63,488 KB
testcase_13 AC 63 ms
63,360 KB
testcase_14 AC 63 ms
63,488 KB
testcase_15 MLE -
testcase_16 AC 56 ms
63,360 KB
testcase_17 AC 57 ms
63,360 KB
testcase_18 AC 57 ms
63,104 KB
testcase_19 AC 57 ms
63,232 KB
testcase_20 AC 55 ms
63,616 KB
testcase_21 AC 57 ms
63,744 KB
testcase_22 AC 64 ms
63,616 KB
testcase_23 AC 63 ms
63,872 KB
testcase_24 AC 63 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[list(map(int,input().split())) for i in range(n)]
L1=[]
L2=[]
for i in range(n):
  L1.append(l[i][0]+4*l[i][1])
  L2.append(l[i][0]%2)
if len(set(L2))!=1:
  print(-1)
  exit()
m=max(L1)
ans=0
for i in range(n):
  ans+=(m-L1[i])//2
print(ans)
0