結果

問題 No.1263 ご注文は数学ですか?
ユーザー SSRS
提出日時 2020-10-16 23:45:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 161 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 164,740 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-21 00:34:03
合計ジャッジ時間 3,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other AC * 1 RE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int x;
  cin >> x;
  if (x == 3){
    cout << 1000000001 << endl;
  } else {
    assert(false);
  }
}
0