結果

問題 No.904 サメトロ
ユーザー takakintakakin
提出日時 2020-07-10 00:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-10-08 19:35:33
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,672 KB
testcase_01 AC 49 ms
61,696 KB
testcase_02 AC 59 ms
62,592 KB
testcase_03 AC 48 ms
61,440 KB
testcase_04 AC 51 ms
62,848 KB
testcase_05 AC 42 ms
57,216 KB
testcase_06 AC 56 ms
64,896 KB
testcase_07 AC 48 ms
62,592 KB
testcase_08 AC 63 ms
65,920 KB
testcase_09 AC 39 ms
57,344 KB
testcase_10 AC 48 ms
62,208 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 42 ms
57,984 KB
testcase_13 AC 48 ms
62,592 KB
testcase_14 AC 47 ms
61,824 KB
testcase_15 AC 41 ms
58,240 KB
testcase_16 AC 50 ms
62,080 KB
testcase_17 AC 40 ms
57,600 KB
testcase_18 AC 38 ms
57,344 KB
testcase_19 AC 49 ms
61,824 KB
testcase_20 AC 40 ms
57,856 KB
testcase_21 AC 48 ms
61,952 KB
testcase_22 AC 58 ms
64,768 KB
testcase_23 AC 48 ms
62,080 KB
testcase_24 AC 53 ms
61,824 KB
testcase_25 AC 39 ms
57,088 KB
testcase_26 AC 50 ms
62,208 KB
testcase_27 AC 118 ms
75,264 KB
testcase_28 AC 39 ms
57,344 KB
testcase_29 AC 40 ms
57,344 KB
testcase_30 AC 38 ms
57,344 KB
testcase_31 AC 40 ms
57,472 KB
testcase_32 AC 39 ms
57,344 KB
testcase_33 AC 39 ms
57,344 KB
testcase_34 AC 40 ms
57,728 KB
testcase_35 AC 42 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
AB=[]
at,bt=0,0
for _ in range(n-1):
  a,b=map(int,input().split())
  AB.append((a,b))
  at+=a
  bt+=b

ans=0
for a in range(n*10000+1):
  b=a+at-bt
  if b<0 or a>bt:
    continue
  else:
    chk=True
    for i in range(1,n):
      if AB[i-1][0]>bt+b-AB[i-1][1]:
        chk=False
    if chk:
      ans+=1
print(ans)

0