結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
27,336 KB
testcase_01 AC 100 ms
27,592 KB
testcase_02 AC 103 ms
27,592 KB
testcase_03 AC 118 ms
27,592 KB
testcase_04 AC 97 ms
27,464 KB
testcase_05 AC 98 ms
27,096 KB
testcase_06 AC 93 ms
27,608 KB
testcase_07 AC 99 ms
27,608 KB
testcase_08 AC 92 ms
27,864 KB
testcase_09 AC 99 ms
27,352 KB
testcase_10 AC 93 ms
27,480 KB
testcase_11 AC 91 ms
27,224 KB
testcase_12 AC 99 ms
27,608 KB
testcase_13 AC 96 ms
27,352 KB
testcase_14 AC 98 ms
27,608 KB
testcase_15 AC 91 ms
27,344 KB
testcase_16 AC 96 ms
27,088 KB
testcase_17 AC 93 ms
27,600 KB
testcase_18 AC 97 ms
27,216 KB
testcase_19 AC 96 ms
27,344 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, 200, '\n', *[i for i in range(200, 400)], flush=True)
c = int(input())
lb += 200 * c

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

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

print(1000, 200, '\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