結果
| 問題 |
No.1317 月曜日の朝、WAを出した
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-25 11:37:37 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 307 bytes |
| コンパイル時間 | 153 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-13 19:54:26 |
| 合計ジャッジ時間 | 1,324 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 3 |
ソースコード
Result = ['AC','WA','TLE','MLE','OLE','RE']
N = int(input())
for _ in range(N):
R0 = list(map(int, input().split()))
R1 = list(map(int, input().split()))
X = input()
i = Result.index(X)
if R0[i] == 0 and any(R1[0:i]+R1[i+1:]) == False:
print('Yes')
else:
print('No')