結果
| 問題 |
No.1544 [Cherry 2nd Tune C] Synchroscope
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2021-05-19 12:14:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 467 bytes |
| コンパイル時間 | 304 ms |
| コンパイル使用メモリ | 82,272 KB |
| 実行使用メモリ | 63,104 KB |
| 最終ジャッジ日時 | 2024-12-14 21:33:21 |
| 合計ジャッジ時間 | 3,702 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 48 |
ソースコード
"""Validator"""
N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
assert len(A)==N, "Aの長さが制約違反 (|A|={}, N={})".format(len(A),N)
assert len(B)==M, "Bの長さが制約違反 (|B|={}, M={})".format(len(B),M)
for i,a in enumerate(A,1):
assert 1<=a<=10**4, "A_{} が制約違反 (A_{}={})".format(i,i,a)
for j,b in enumerate(B,1):
assert 1<=b<=10**4, "B_{} が制約違反 (B_{}={})".format(j,j,b)
Kazun