結果

問題 No.607 開通777年記念
ユーザー ikdikd
提出日時 2017-12-08 15:49:13
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 261 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,356 KB
最終ジャッジ日時 2024-05-07 05:34:36
合計ジャッジ時間 7,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
19,356 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 75 ms
12,032 KB
testcase_05 AC 76 ms
11,904 KB
testcase_06 AC 80 ms
12,032 KB
testcase_07 AC 1,661 ms
12,544 KB
testcase_08 AC 75 ms
12,288 KB
testcase_09 AC 126 ms
12,672 KB
testcase_10 AC 81 ms
12,032 KB
testcase_11 TLE -
testcase_12 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m=gets.split.map(&:to_i)
a=Array.new(n){0}
m.times do
  diff=gets.split.map(&:to_i)
  a=a.zip(diff).map{|cur, d| cur+d}
  n.times do |i|
    s=0
    (i...n).each do |j|
      if (s+=a[j])==777
        puts 'YES'; exit 0
      end
    end
  end
end

puts 'NO'
0