結果
| 問題 |
No.2481 Shiritori
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-09-22 21:49:56 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 252 bytes |
| コンパイル時間 | 1,846 ms |
| コンパイル使用メモリ | 191,468 KB |
| 最終ジャッジ日時 | 2025-02-17 00:33:55 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 WA * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0); cout.tie(0);
ios::sync_with_stdio(false);
long long N, M;
cin >> N >> M;
if(N == 1 || M <= 2) {
cout << "First\n";
} else {
cout << "Second\n";
}
return 0;
}