結果

問題 No.1317 月曜日の朝、WAを出した
ユーザー WizistWizist
提出日時 2020-12-17 03:36:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 1,500 ms
コード長 460 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-20 06:07:54
合計ジャッジ時間 1,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 162 ms
77,844 KB
testcase_02 AC 166 ms
78,080 KB
testcase_03 AC 179 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#
# No.1317 月曜日の朝、WAを出した
#
import sys, os, math

def read_ints(): return list(map(int, input().split()))

m = dict((x, i) for i, x in enumerate('AC WA TLE MLE OLE RE'.split()))

T = int(input())
for _ in range(T):
	a = read_ints()
	b = read_ints()
	x = m[input()]
	ans = True
	if a[x] != 0:
		ans = False
	for i in range(1, len(a)):
		if i == x: continue
		if b[i] != 0: ans = False

	print("Yes" if ans else "No")


0