結果

問題 No.2080 Simple Nim Query
ユーザー 👑 CleyLCleyL
提出日時 2022-09-28 00:21:28
言語 cLay
(20240714-1)
結果
AC  
実行時間 143 ms / 3,000 ms
コード長 253 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 180,316 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-12 07:28:50
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 14 ms
6,940 KB
testcase_04 AC 14 ms
6,940 KB
testcase_05 AC 143 ms
14,208 KB
testcase_06 AC 46 ms
6,940 KB
testcase_07 AC 45 ms
6,944 KB
testcase_08 AC 123 ms
12,160 KB
testcase_09 AC 123 ms
12,288 KB
testcase_10 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll @n,@q,t,x,y;
set<int> A;
A.insert(-1);
rep(y,n){
  rd(x);
  if(--x)A.insert(y);
}
rep(q){
  rd(t,x,y);
  if(--t){
    auto z=--A.lower_bound(y);
    wt((*z>x-2?"SF"[(y-*z)%2]:"FS"[(y-x)%2]));
  }else{
    A.insert(--x);
    if(!--y)A.erase(x);
  }
}
0