結果

問題 No.178 美しいWhitespace (1)
ユーザー ohanaohana
提出日時 2023-10-23 13:27:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 63,632 KB
最終ジャッジ日時 2024-09-22 10:06:23
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,444 KB
testcase_01 AC 38 ms
52,320 KB
testcase_02 AC 38 ms
53,132 KB
testcase_03 AC 37 ms
53,096 KB
testcase_04 AC 51 ms
63,632 KB
testcase_05 AC 52 ms
62,492 KB
testcase_06 AC 52 ms
61,716 KB
testcase_07 AC 51 ms
63,596 KB
testcase_08 AC 51 ms
62,392 KB
testcase_09 AC 52 ms
62,088 KB
testcase_10 AC 51 ms
62,972 KB
testcase_11 AC 52 ms
63,008 KB
testcase_12 AC 52 ms
62,432 KB
testcase_13 AC 51 ms
62,724 KB
testcase_14 AC 52 ms
62,844 KB
testcase_15 AC 51 ms
62,656 KB
testcase_16 AC 53 ms
61,904 KB
testcase_17 AC 52 ms
61,852 KB
testcase_18 AC 51 ms
62,456 KB
testcase_19 AC 52 ms
62,300 KB
testcase_20 AC 52 ms
62,336 KB
testcase_21 AC 53 ms
61,840 KB
testcase_22 AC 53 ms
62,792 KB
testcase_23 AC 52 ms
63,632 KB
testcase_24 AC 51 ms
62,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = []

for i in range(n):
    a, b = map(int, input().split())
    A.append(a + 4 * b)

c = max(A)
ans = 0
for a in A:
    if (c - a) % 2 != 0:
        ans = -1
        break
    ans += (c - a) // 2

print(ans)
0