結果

問題 No.3141 Balancing with X=>O Flip
ユーザー Cecil
提出日時 2025-05-16 21:39:08
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 274,200 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-16 21:39:13
合計ジャッジ時間 3,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include <bits/stdc++.h>
using namespace std;

int main(){
    int N;
    string S;
    cin >> N;
    cin >> S;

    int cnt = N/2;
    if (cnt%2==1)
        cout << "First" << endl;
    else
        cout << "Second" << endl;

    return 0;
}
0