結果

問題 No.607 開通777年記念
ユーザー akko_yukkyakko_yukky
提出日時 2017-12-12 21:16:16
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-05-08 05:16:26
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 84 ms
12,032 KB
testcase_07 WA -
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 131 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split.map(&:to_i)
trains = Array.new(n){0}

m.times {
  tmp = gets.chomp.split.map(&:to_i)
  (0..n-1).each do |k|
    trains[k] += tmp[k]
  end
sum = 0
  (0..n-1).each do |i|
    sum = trains[i]
      if sum == 777
        puts 'YES'
        return
      end
    (i+1..n-1).each do |j|
      sum += trains[j]
      if sum == 777
        puts 'YES' 
        exit
      end
    end
  end
puts 'NO'
return
}
0