結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | yuruhiya |
提出日時 | 2020-12-15 16:00:59 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-09-20 01:42:28 |
合計ジャッジ時間 | 1,465 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
12,160 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
status = %w[AC WA TLE MLE OLE RE] gets.to_i.times do a = gets.split.map(&:to_i) b = gets.split.map(&:to_i) s = gets.chomp s_i = status.index(s) if (0...6).reject { |i| i == 0 || i == s_i }.all? { |i| b[i] == 0 } wrong_sum = a[1..].sum if a[0] >= b[0] && (a[0] - b[0] + wrong_sum) == b[s_i] puts "Yes" else puts "No" end else puts 'No' end end