結果
問題 | No.2080 Simple Nim Query |
ユーザー | taiga0629kyopro |
提出日時 | 2022-09-22 07:58:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 406 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 104,244 KB |
最終ジャッジ日時 | 2024-06-01 23:13:17 |
合計ジャッジ時間 | 2,999 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#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)