結果
| 問題 |
No.2080 Simple Nim Query
|
| コンテスト | |
| ユーザー |
taiga0629kyopro
|
| 提出日時 | 2022-09-22 07:58:36 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 406 bytes |
| コンパイル時間 | 305 ms |
| コンパイル使用メモリ | 82,788 KB |
| 実行使用メモリ | 104,312 KB |
| 最終ジャッジ日時 | 2024-12-22 14:14:41 |
| 合計ジャッジ時間 | 2,942 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 8 |
ソースコード
#check
N,Q=map(int,input().split())
A=list(map(int,input().split()))
if not (1<=N<=2*10**5 and 1<=Q<=2*10**5):print(aaa)
if not len(A)==N:print(aaa)
if not (min(A)>=1 and max(A)<=10**9):print(aaa)
for iii in range(Q):
T,X,Y=map(int,input().split())
if not (T==1 or T==2):print(aaa)
if T==1:
if not (1<=X<=N and 1<=Y<=10**9):print(aaa)
else:
if not (1<=X<=Y<=N):print(aaa)
taiga0629kyopro