結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | siman |
提出日時 | 2022-11-13 19:14:10 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 715 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-09-15 01:07:08 |
合計ジャッジ時間 | 1,633 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,032 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - a Syntax OK
ソースコード
N = gets.to_i N.times do a, w, t, m, o, r = gets.split.map(&:to_i) a2, w2, t2, m2, o2, r2 = gets.split.map(&:to_i) x = gets.chomp flg = true case x when 'WA' flg = false if w != 0 flg = false if [a2, t2, m2, o2, r2].any? { |v| v != 0 } when 'TLE' flg = false if t != 0 flg = false if [a2, w2, m2, o2, r2].any? { |v| v != 0 } when 'MLE' flg = false if m != 0 flg = false if [a2, w2, t2, o2, r2].any? { |v| v != 0 } when 'OLE' flg = false if o != 0 flg = false if [a2, w2, m2, t2, r2].any? { |v| v != 0 } when 'RE' flg = false if r != 0 flg = false if [a2, w2, m2, o2, t2].any? { |v| v != 0 } end if flg puts 'Yes' else puts 'No' end end