結果

問題 No.2080 Simple Nim Query
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-22 07:58:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 104,972 KB
最終ジャッジ日時 2023-08-24 01:50:58
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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)

0