結果

問題 No.178 美しいWhitespace (1)
ユーザー convexineqconvexineq
提出日時 2020-12-13 13:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-09-19 23:27:42
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 36 ms
53,012 KB
testcase_02 AC 34 ms
52,692 KB
testcase_03 AC 37 ms
52,400 KB
testcase_04 AC 50 ms
62,352 KB
testcase_05 AC 49 ms
62,552 KB
testcase_06 AC 49 ms
62,428 KB
testcase_07 AC 47 ms
61,764 KB
testcase_08 AC 50 ms
63,360 KB
testcase_09 AC 49 ms
62,072 KB
testcase_10 AC 52 ms
62,316 KB
testcase_11 AC 48 ms
61,548 KB
testcase_12 AC 49 ms
61,660 KB
testcase_13 AC 48 ms
62,232 KB
testcase_14 AC 49 ms
62,296 KB
testcase_15 AC 50 ms
62,432 KB
testcase_16 AC 49 ms
62,148 KB
testcase_17 AC 48 ms
62,608 KB
testcase_18 AC 46 ms
61,204 KB
testcase_19 AC 49 ms
62,028 KB
testcase_20 AC 47 ms
62,876 KB
testcase_21 AC 48 ms
61,940 KB
testcase_22 AC 48 ms
61,828 KB
testcase_23 AC 48 ms
61,828 KB
testcase_24 AC 48 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = [0]*n
for i in range(n):
    a,b = map(int,input().split())
    r[i] = a + 4*b

if all(ri%2 == r[0]%2 for ri in r):
    print((max(r)*n-sum(r))//2)
else:
    print(-1)
0