結果
問題 | No.2080 Simple Nim Query |
ユーザー | a a |
提出日時 | 2022-10-14 09:41:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 240 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 39,872 KB |
最終ジャッジ日時 | 2024-06-26 12:29:30 |
合計ジャッジ時間 | 8,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
n,q=list(map(int,input().split())) a=list(map(int,input().split())) for _ in range(q): t,x,y=list(map(int,input().split())) if t==0: a[x-1]=y elif a[1:y-1].count('1')%2==0: print("F") else: print("S")