結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-07-18 07:37:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 65,936 KB
最終ジャッジ日時 2024-02-23 21:22:16
合計ジャッジ時間 1,668 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
assert 1<=T<=100,"constraint violation"
for i in range(T):
	D,A=map(int,input().split())
	assert 1<=D<=100,"constraint violation"
	assert 1<=A<=10**18,"constraint violation"
	X=list(map(int,input().split()))
	for j in X:
		assert 1<=j<=10**18,"constraint violation"
	print("ok")
0