結果

問題 No.253 ロウソクの長さ
ユーザー pekempeypekempey
提出日時 2015-07-25 00:19:15
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,258 bytes
コンパイル時間 1,232 ms
コンパイル使用メモリ 144,444 KB
実行使用メモリ 36,100 KB
最終ジャッジ日時 2023-09-23 21:00:53
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:18:12: warning: built-in function ‘pow10’ declared as non-function [-Wbuiltin-declaration-mismatch]
 ll pow10[10];
            ^
main.cpp: In function ‘ll rec(int, int)’:
main.cpp:41:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a) for (int i = 0; i < (a); i++)
#define rep2(i, a, b) for (int i = (a); i < (b); i++)
#define repr(i, a) for (int i = (a) - 1; i >= 0; i--)
#define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--)
#define itall(a) a.begin(), a.end()
using namespace std;
typedef long long ll;
const ll inf = 1e9;
const ll mod = 1e9 + 7;
const double pi = acos(-1);
const double eps = 1e-8;
template<typename T> inline T sq(T a) { return a * a; }
template<typename T> inline T cb(T a) { return a * a * a; }
template<typename T> inline bool umin(T &a, const T &b) { return b < a && (a = b, true); }
template<typename T> inline bool umax(T &a, const T &b) { return a < b && (a = b, true); }

ll pow10[10];

int get(int x) {
    cout << "? " << x << endl;
    int res;
    cin >> res;
    return res;
}

ll rec(int t, int ub) {
    repr2 (i, 1, ub) {
        ll g = get(pow10[i] - t);
        if (g == 0) return pow10[i] - t;
        if (g > 0) {
            return rec(t + pow10[i], i);
        }
        t++;
    }

    rep (i, 10) {
        if (get(0) == 0) return t;
        t++;
    }
}

int main() {
    pow10[0] = 1;
    rep2 (i, 1, 10) pow10[i] = 10 * pow10[i - 1];
    ll ans = rec(0, 10);

    cout << "! " << ans << endl;
}
0