結果

問題 No.904 サメトロ
ユーザー takakintakakin
提出日時 2020-07-10 00:24:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-10-08 19:34:28
合計ジャッジ時間 9,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
15,744 KB
testcase_01 AC 52 ms
10,624 KB
testcase_02 AC 422 ms
10,496 KB
testcase_03 AC 107 ms
10,624 KB
testcase_04 AC 409 ms
10,624 KB
testcase_05 AC 49 ms
10,624 KB
testcase_06 AC 705 ms
10,752 KB
testcase_07 AC 102 ms
10,752 KB
testcase_08 TLE -
testcase_09 AC 42 ms
10,752 KB
testcase_10 AC 187 ms
10,624 KB
testcase_11 AC 175 ms
10,624 KB
testcase_12 AC 83 ms
10,624 KB
testcase_13 AC 68 ms
10,496 KB
testcase_14 AC 105 ms
10,624 KB
testcase_15 AC 100 ms
10,624 KB
testcase_16 AC 199 ms
10,496 KB
testcase_17 AC 68 ms
10,496 KB
testcase_18 AC 41 ms
10,624 KB
testcase_19 AC 83 ms
10,624 KB
testcase_20 AC 64 ms
10,624 KB
testcase_21 AC 142 ms
10,496 KB
testcase_22 AC 901 ms
10,624 KB
testcase_23 AC 152 ms
10,368 KB
testcase_24 AC 307 ms
10,752 KB
testcase_25 AC 38 ms
10,624 KB
testcase_26 AC 222 ms
10,624 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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