結果

問題 No.1777 万華鏡美術館
ユーザー ei1333333ei1333333
提出日時 2021-12-06 13:32:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 156 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 197,420 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-21 15:10:49
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 RE -
testcase_02 WA -
testcase_03 RE -
testcase_04 AC 2 ms
4,380 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 1 ms
4,380 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

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