結果

問題 No.2828 Remainder Game
ユーザー naut3naut3
提出日時 2024-08-02 22:13:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,976 KB
平均クエリ数 52.00
最終ジャッジ日時 2024-08-02 22:13:38
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 98 ms
27,480 KB
testcase_07 RE -
testcase_08 AC 99 ms
27,224 KB
testcase_09 RE -
testcase_10 AC 99 ms
27,224 KB
testcase_11 AC 90 ms
27,736 KB
testcase_12 AC 95 ms
27,352 KB
testcase_13 AC 95 ms
27,352 KB
testcase_14 RE -
testcase_15 AC 90 ms
27,088 KB
testcase_16 AC 90 ms
27,600 KB
testcase_17 AC 88 ms
27,344 KB
testcase_18 AC 89 ms
27,696 KB
testcase_19 AC 90 ms
27,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

P = [2, 3, 5, 7, 13]
R = [0, 0, 0, 0, 0]

for (j, p) in enumerate(P):
    for i in range(1, p):
        print(p, 1, flush=True)
        print(i, flush=True)

        C = int(input())
        R[j] += C * i
        R[j] %= p

a = 0

for r in range(2 * 3 * 5 * 7 * 13):
    isok = True

    for i in range(5):
        p = P[i]
        q = R[i]

        if r % p != q:
            isok = False

    if isok:
        a = r
        break

if 5 * N < 2 * 3 * 5 * 7 * 13:
    print(0, 1, "\n", a, flush=True)
    exit()

# a, a + 2 * 3 * 5 * 7 * 13 のどっちか
lb = 0

print(1000, 250, '\n', *[i for i in range(200, 400)], flush=True)
c = int(input())
lb += 200 * c

print(1000, 250, '\n', *[i for i in range(400, 600)], flush=True)
c = int(input())
lb += 400 * c

print(1000, 250, '\n', *[i for i in range(600, 800)], flush=True)
c = int(input())
lb += 600 * c

print(1000, 250, '\n', *[i for i in range(800, 1000)], flush=True)
c = int(input())
lb += 800 * c

if lb > a:
    print(0, 1, "\n", a + 2 * 3 * 5 * 7 * 13, flush=True)
else:
    print(0, 1, "\n", a, flush=True)
0