結果

問題 No.2481 Shiritori
ユーザー ochiaigawaochiaigawa
提出日時 2023-09-22 21:49:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 199,448 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 12:34:00
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0