結果

問題 No.1263 ご注文は数学ですか?
ユーザー SSRSSSRS
提出日時 2020-10-16 23:45:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 161 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 162,744 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-28 06:08:47
合計ジャッジ時間 2,919 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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