結果
| 問題 |
No.1359 [Zelkova 3rd Tune] 四人セゾン
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2021-01-22 02:20:18 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 997 bytes |
| コンパイル時間 | 857 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 144,156 KB |
| 最終ジャッジ日時 | 2024-12-25 16:47:49 |
| 合計ジャッジ時間 | 20,360 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 75 |
ソースコード
#checker
N,K,M=map(int,input().split())
assert 1<=N<=2*10**5,"Nが制約外(N={})".format(N)
assert 1<=K<=10**9,"Kが制約外(K={})".format(K)
assert 1<=M<=10**9,"Mが制約外(M={})".format(M)
P=list(map(int,input().split()))
assert len(P)==N,"Pの長さがおかしい(長さ:{})".format(len(P))
for i,x in enumerate(P,1):
assert 0<=x<=10**9,"P_{}が制約外(P_{}={})".format(i,i,x)
E=list(map(int,input().split()))
assert len(E)==N,"Eの長さがおかしい(長さ:{})".format(len(E))
for i,x in enumerate(E,1):
assert 0<=x<=10**9,"E_{}が制約外(E_{}={})".format(i,i,x)
A=list(map(int,input().split()))
assert len(A)==N,"Aの長さがおかしい(長さ:{})".format(len(A))
for i,x in enumerate(A,1):
assert 0<=x<=10**9,"A_{}が制約外(A_{}={})".format(i,i,x)
H=list(map(int,input().split()))
assert len(H)==N,"Hの長さがおかしい(長さ:{})".format(len(H))
for i,x in enumerate(H,1):
assert 0<=x<=10**9,"H_{}が制約外(H_{}={})".format(i,i,x)
print("OK")
Kazun