結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | googol_S0 |
提出日時 | 2020-12-14 00:12:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,664 KB |
実行使用メモリ | 78,040 KB |
最終ジャッジ日時 | 2024-09-20 00:18:20 |
合計ジャッジ時間 | 1,084 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,800 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
N=int(input()) S=['AC','WA','TLE','MLE','OLE','RE'] for i in range(N): A=list(map(int,input().split())) B=list(map(int,input().split())) X=input() Y=0 f=0 for j in range(1,len(A)): if S[j]==X: Y=A[j] Z=0 for j in range(1,len(B)): if S[j]==X: Z=B[j] if max(A)==A[0]: print('Yes') else: if Y: print('No') elif Z==sum(A[1:]): print('Yes') else: print('No')