結果

問題 No.2828 Remainder Game
ユーザー ああいいああいい
提出日時 2024-08-28 13:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 76,204 KB
平均クエリ数 17.60
最終ジャッジ日時 2024-08-28 13:32:51
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
76,004 KB
testcase_01 AC 118 ms
75,908 KB
testcase_02 AC 123 ms
75,456 KB
testcase_03 AC 123 ms
75,576 KB
testcase_04 AC 123 ms
75,636 KB
testcase_05 AC 121 ms
75,288 KB
testcase_06 AC 114 ms
70,040 KB
testcase_07 AC 118 ms
75,960 KB
testcase_08 AC 109 ms
69,240 KB
testcase_09 AC 117 ms
75,524 KB
testcase_10 AC 119 ms
70,108 KB
testcase_11 AC 112 ms
70,700 KB
testcase_12 AC 112 ms
69,728 KB
testcase_13 AC 112 ms
69,312 KB
testcase_14 AC 121 ms
76,204 KB
testcase_15 AC 112 ms
69,032 KB
testcase_16 AC 113 ms
69,524 KB
testcase_17 AC 115 ms
70,104 KB
testcase_18 AC 113 ms
69,276 KB
testcase_19 AC 111 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 0
now = 1

while now <= N:
    print(now * 2,now)
    print(*list(range(now)))
    u = int(input())
    v = 5 - u
    ans += v * now
    now *= 2
print(0,1)
print(ans)
0