結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | 👑 Kazun |
提出日時 | 2020-12-09 16:35:53 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 509 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 81,752 KB |
実行使用メモリ | 66,488 KB |
最終ジャッジ日時 | 2024-09-19 01:15:39 |
合計ジャッジ時間 | 897 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
import sys input=sys.stdin.readline N=int(input()) K=[""]*N Res=["AC","WA","TLE","MLE","OLE","RE"] for i in range(N): S=list(map(int,input().split())) H={Res[j]:S[j] for j 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==X: continue Flag&=(J[Z]==0) if Flag: print("Yes") else: print("No")