結果

問題 No.607 開通777年記念
ユーザー cympfhcympfh
提出日時 2017-12-08 01:46:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-05-06 19:46:04
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 125 ms
12,928 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 97 ms
12,288 KB
testcase_10 AC 85 ms
12,288 KB
testcase_11 AC 553 ms
13,440 KB
testcase_12 AC 600 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split.map(&:to_i)
a = [0] * n

m.times do
  xs = gets.chomp.split.map(&:to_i)
  n.times do |i|
    a[i] += xs[i]
  end
  s = a[0]
  i = 0
  j = 1
  ok = false
  loop do
    while s < 777 and j < n
      s += a[j]
      j += 1
    end
    while s > 777 and i < j
      s -= a[i]
      i += 1
    end
    if s == 777
      ok = true
      break
    end
    break if j >= n
  end
  if ok
    puts :YES
    exit
  end
end

puts :NO
0