結果
| 問題 | No.3141 Balancing with X=>O Flip |
| コンテスト | |
| ユーザー |
Cecil
|
| 提出日時 | 2025-05-16 21:39:08 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 261 bytes |
| 記録 | |
| コンパイル時間 | 1,933 ms |
| コンパイル使用メモリ | 328,712 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-10 17:54:55 |
| 合計ジャッジ時間 | 3,628 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 26 |
ソースコード
#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;
}
Cecil