結果

問題 No.904 サメトロ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-03 23:37:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 380 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 75,740 KB
最終ジャッジ日時 2024-07-02 22:09:20
合計ジャッジ時間 4,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
75,336 KB
testcase_01 AC 60 ms
69,376 KB
testcase_02 AC 80 ms
75,136 KB
testcase_03 AC 92 ms
75,508 KB
testcase_04 AC 79 ms
75,136 KB
testcase_05 AC 55 ms
69,760 KB
testcase_06 AC 87 ms
75,136 KB
testcase_07 AC 74 ms
75,740 KB
testcase_08 AC 108 ms
75,392 KB
testcase_09 AC 51 ms
66,176 KB
testcase_10 AC 118 ms
75,524 KB
testcase_11 AC 111 ms
75,264 KB
testcase_12 AC 80 ms
75,008 KB
testcase_13 AC 61 ms
72,832 KB
testcase_14 AC 77 ms
75,516 KB
testcase_15 AC 99 ms
75,008 KB
testcase_16 AC 114 ms
75,264 KB
testcase_17 AC 82 ms
75,568 KB
testcase_18 AC 52 ms
66,432 KB
testcase_19 AC 69 ms
74,880 KB
testcase_20 AC 65 ms
75,392 KB
testcase_21 AC 90 ms
75,008 KB
testcase_22 AC 120 ms
75,568 KB
testcase_23 AC 98 ms
75,264 KB
testcase_24 AC 76 ms
75,648 KB
testcase_25 AC 51 ms
65,152 KB
testcase_26 AC 128 ms
75,008 KB
testcase_27 AC 142 ms
75,304 KB
testcase_28 AC 48 ms
64,256 KB
testcase_29 AC 143 ms
74,880 KB
testcase_30 AC 48 ms
63,360 KB
testcase_31 AC 52 ms
65,920 KB
testcase_32 AC 53 ms
66,176 KB
testcase_33 AC 53 ms
65,280 KB
testcase_34 AC 52 ms
66,048 KB
testcase_35 AC 55 ms
67,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [0]*n
B = [0]*n
for i in range(n-1):
    A[i+1],B[i+1] = map(int,input().split())

AS = sum(A)
BS = sum(B)

ans = 0
for a in range((n+2)*10**4):
    b = a+AS-BS
    if b < 0:
        continue
    A[0],B[0] = a,b
    sa = AS+a
    sb = BS+b
    ok = 1
    for na,nb in zip(A,B):
        if na > sb-nb or nb > sa-na:
            ok = 0
    ans += ok

print(ans)
0