結果

問題 No.2828 Remainder Game
ユーザー naut3naut3
提出日時 2024-08-02 21:56:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,728 KB
平均クエリ数 52.00
最終ジャッジ日時 2024-08-02 21:57:01
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 89 ms
27,480 KB
testcase_07 AC 93 ms
27,216 KB
testcase_08 AC 95 ms
26,968 KB
testcase_09 AC 94 ms
27,608 KB
testcase_10 AC 93 ms
27,224 KB
testcase_11 AC 91 ms
27,608 KB
testcase_12 AC 103 ms
27,224 KB
testcase_13 AC 91 ms
27,224 KB
testcase_14 AC 93 ms
27,728 KB
testcase_15 AC 89 ms
27,216 KB
testcase_16 AC 89 ms
26,960 KB
testcase_17 AC 89 ms
26,960 KB
testcase_18 AC 89 ms
27,472 KB
testcase_19 AC 89 ms
27,216 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

# a, a + 2 * 3 * 5 * 7 * 13 のどっちか
print(0, 1, "\n", a, flush=True)
0