結果

問題 No.3011 あ、俺こいつの役やりたい!
ユーザー redoCtA
提出日時 2025-01-25 20:19:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 27,384 KB
平均クエリ数 11.66
最終ジャッジ日時 2025-01-26 00:06:41
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge7 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

def test(x):
    print(x)
    return int(input())
x = 1<<29
while True:
    if test(x):
        exit()
    x >>= 1
0