結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | 👑 Kazun |
提出日時 | 2020-11-21 04:18:47 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 330 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 81,892 KB |
実行使用メモリ | 66,340 KB |
最終ジャッジ日時 | 2024-09-15 10:05:15 |
合計ジャッジ時間 | 1,213 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
Res=["AC","WA","TLE","MLE","OLE","RE"] S=list(map(int,input().split())) H={Res[i]:S[i] for i in range(6)} T=list(map(int,input().split())) J={Res[j]:T[j] for j in range(6)} X=input() Flag=(H[X]==0) for Z in Res[1:]: if Z=="AC" or Z==X: continue Flag&=(J[Z]==0) if Flag: print("Yes") else: print("No")