結果
問題 | No.607 開通777年記念 |
ユーザー | siman |
提出日時 | 2020-10-13 01:18:43 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 505 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 7,168 KB |
実行使用メモリ | 22,656 KB |
最終ジャッジ日時 | 2024-07-20 18:15:22 |
合計ジャッジ時間 | 3,930 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
12,160 KB |
testcase_01 | AC | 92 ms
12,288 KB |
testcase_02 | AC | 92 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 90 ms
12,160 KB |
testcase_05 | AC | 88 ms
12,288 KB |
testcase_06 | WA | - |
testcase_07 | AC | 170 ms
14,720 KB |
testcase_08 | AC | 87 ms
12,160 KB |
testcase_09 | AC | 94 ms
12,288 KB |
testcase_10 | AC | 91 ms
12,416 KB |
testcase_11 | AC | 543 ms
22,400 KB |
testcase_12 | AC | 564 ms
22,656 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N, M = gets.split.map(&:to_i) A = M.times.map { gets.split.map(&:to_i) } R = Array.new(N, 0) M.times do |i| A[i].each_with_index do |x, idx| R[idx] += x end l = 0 r = 0 sum = R[0] while l < N && l <= r if sum < 777 r += 1 if r < N sum += R[r] else break end else sum -= R[l] l += 1 if r < l r = l sum = R[r] end end if sum == 777 puts 'YES' exit end end end puts 'NO'