結果

問題 No.1148 土偶Ⅲ
ユーザー first_vilfirst_vil
提出日時 2020-08-06 11:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-09-19 11:10:55
合計ジャッジ時間 4,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 93 ms
80,024 KB
testcase_06 AC 121 ms
89,856 KB
testcase_07 AC 104 ms
83,584 KB
testcase_08 AC 121 ms
88,192 KB
testcase_09 AC 112 ms
86,912 KB
testcase_10 AC 88 ms
80,028 KB
testcase_11 AC 112 ms
87,424 KB
testcase_12 AC 64 ms
69,760 KB
testcase_13 AC 76 ms
76,544 KB
testcase_14 AC 66 ms
72,064 KB
testcase_15 AC 105 ms
81,136 KB
testcase_16 AC 80 ms
77,956 KB
testcase_17 AC 119 ms
88,652 KB
testcase_18 AC 65 ms
69,632 KB
testcase_19 AC 89 ms
80,452 KB
testcase_20 AC 98 ms
81,792 KB
testcase_21 AC 87 ms
79,872 KB
testcase_22 AC 64 ms
70,912 KB
testcase_23 AC 69 ms
74,240 KB
testcase_24 AC 79 ms
76,032 KB
testcase_25 AC 78 ms
76,416 KB
testcase_26 AC 103 ms
76,800 KB
testcase_27 AC 66 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  n,w=map(int,input().split())
  a=[int(input()) for _ in range(n)]
  d={}
  ans=0
  cur=0
  r=0
  for l in range(n):
    while r<n and (a[r] not in d or not d[a[r]]) and cur+a[r]<=w:
      cur+=a[r]
      d[a[r]]=True
      r+=1
    if ans<r-l:
      ans=r-l
    cur-=a[l]
    d[a[l]]=False
  print(ans)
main()
0