結果

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main() {
  int N, M;
  cin >> N >> M;
  if(N & 1) {
    cout << 5 << endl;
    return 0;
  }
  throw 0;
}
0