結果

問題 No.2481 Shiritori
ユーザー haihamabossuhaihamabossu
提出日時 2023-09-22 22:30:27
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 98,616 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 13:14:56
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;

void solve() {
  long long n, m;
  cin >> n >> m;
  if (n % 2 == 1 || m <= 2) {
    cout << "First" << '\n';
  } else {
    cout << "Second" << '\n';
  }
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0