結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | Konton7 |
提出日時 | 2021-01-14 14:10:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 406 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-03 06:48:54 |
合計ジャッジ時間 | 695 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
not_AC_dict = {'WA' : 1, 'TLE' : 2, 'MLE' : 3, 'OLE' :4, 'RE' :5} t = inout() for i in range(t): a = [int (v) for v in input().split()] b = [int (v) for v in input().split()] s = input() ans = [] for j in range(6): if j == 0: ans.append(a[j] <= b[j]) elif j != not_AC_dict[s]: ans.append(b[j] == 0) print("Yes") if all(ans) else print("No")