結果

問題 No.1777 万華鏡美術館
ユーザー ei1333333
提出日時 2021-12-06 13:34:08
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 191,256 KB
最終ジャッジ日時 2025-01-26 05:34:52
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 2 WA * 1 RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

void yon() {
  cout << 4 << endl;
  exit(0);
}

void go() {
  cout << 5 << endl;
  exit(0);
  
}
int main() {
  int N, M;
  cin >> N >> M;
  if(N == 9) yon();
  if(N & 1) go();
  throw 0;
}
0