結果

問題 No.178 美しいWhitespace (1)
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-24 20:27:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 245 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 64,088 KB
最終ジャッジ日時 2024-07-21 15:36:31
合計ジャッジ時間 2,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,360 KB
testcase_01 AC 34 ms
52,068 KB
testcase_02 AC 36 ms
52,336 KB
testcase_03 AC 34 ms
52,464 KB
testcase_04 AC 49 ms
62,624 KB
testcase_05 AC 48 ms
62,276 KB
testcase_06 AC 48 ms
61,768 KB
testcase_07 AC 48 ms
62,380 KB
testcase_08 AC 51 ms
63,300 KB
testcase_09 AC 49 ms
62,560 KB
testcase_10 AC 50 ms
62,260 KB
testcase_11 AC 49 ms
62,484 KB
testcase_12 AC 48 ms
62,840 KB
testcase_13 AC 49 ms
63,076 KB
testcase_14 MLE -
testcase_15 AC 50 ms
62,632 KB
testcase_16 AC 47 ms
62,928 KB
testcase_17 AC 47 ms
63,192 KB
testcase_18 AC 47 ms
62,352 KB
testcase_19 AC 48 ms
62,804 KB
testcase_20 AC 48 ms
62,520 KB
testcase_21 MLE -
testcase_22 AC 51 ms
62,264 KB
testcase_23 AC 48 ms
62,792 KB
testcase_24 AC 48 ms
63,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
T = []
for i in range(n):
    a,b = map(int, input().split())
    T.append(a+b*4)
T.sort(reverse=True)
ans = 0
for t in T:
    if (T[0]-t)%2 != 0:
        print(-1)
        exit()
    else:
        ans += (T[0]-t)//2
print(ans)
0