結果

問題 No.607 開通777年記念
ユーザー akko_yukkyakko_yukky
提出日時 2017-12-08 18:27:37
言語 Ruby
(3.4.1)
結果
RE  
実行時間 -
コード長 430 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-11-30 21:08:03
合計ジャッジ時間 10,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
18,980 KB
testcase_01 RE -
testcase_02 AC 86 ms
18,852 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 RE -
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 1,817 ms
12,672 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 88 ms
12,160 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

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

while tmp = gets.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' 
        exit
      end 
      (i+1..n-1).each do |j| 
        sum += trains[j]
        if sum == 777 
          puts 'YES' 
          exit
        end 
      end 
  end 
end
puts 'NO'
return
0