結果

問題 No.3501 Digit Products 2
コンテスト
ユーザー Naru820
提出日時 2026-03-28 03:56:57
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
RE  
実行時間 -
コード長 378 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 8,072 ms
コンパイル使用メモリ 442,152 KB
実行使用メモリ 30,320 KB
平均クエリ数 1.85
最終ジャッジ日時 2026-04-17 19:48:37
合計ジャッジ時間 22,978 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other RE * 72
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;

const int MIN_N = 3;
const int MAX_N = 51;


int main() {
    registerValidation();
    int N = inf.readInt(MIN_N, MAX_N);
    inf.readEoln();
    cout << "? " << 0 << " " << 1 << endl;
    int p;
    cin >> p;
    cout << "! " << 0 << endl;
    inf.readEof();
}
0