結果

問題 No.1148 土偶Ⅲ
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-09-09 01:51:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-11-30 17:41:04
合計ジャッジ時間 4,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 74 ms
12,288 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 74 ms
12,032 KB
testcase_05 AC 93 ms
13,696 KB
testcase_06 AC 130 ms
18,432 KB
testcase_07 AC 110 ms
15,232 KB
testcase_08 AC 127 ms
18,048 KB
testcase_09 AC 123 ms
18,048 KB
testcase_10 AC 104 ms
14,080 KB
testcase_11 AC 124 ms
17,792 KB
testcase_12 AC 80 ms
12,160 KB
testcase_13 AC 82 ms
12,544 KB
testcase_14 AC 80 ms
12,416 KB
testcase_15 AC 111 ms
15,360 KB
testcase_16 AC 92 ms
13,440 KB
testcase_17 AC 133 ms
18,048 KB
testcase_18 AC 83 ms
12,288 KB
testcase_19 AC 99 ms
14,720 KB
testcase_20 AC 103 ms
14,848 KB
testcase_21 AC 97 ms
14,080 KB
testcase_22 AC 79 ms
12,032 KB
testcase_23 AC 86 ms
12,288 KB
testcase_24 AC 93 ms
12,544 KB
testcase_25 AC 98 ms
12,288 KB
testcase_26 AC 144 ms
13,184 KB
testcase_27 AC 91 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,w=gets.split.map &:to_i
a=$<.map &:to_i
z=j=s=0
p={}
n.times{|i|
  s+=a[i];
  while s>w||p[a[i]]&&j<=p[a[i]]do s-=a[j];j+=1end
  z<i+1-j&&z=i+1-j
  p[a[i]]=i
}
p z
0