結果

問題 No.2828 Remainder Game
ユーザー ntudantuda
提出日時 2024-08-03 16:12:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,940 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-03 16:12:23
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
75,660 KB
testcase_01 AC 107 ms
75,328 KB
testcase_02 AC 101 ms
76,068 KB
testcase_03 AC 108 ms
75,016 KB
testcase_04 AC 102 ms
76,100 KB
testcase_05 AC 116 ms
75,892 KB
testcase_06 AC 105 ms
76,136 KB
testcase_07 AC 107 ms
75,932 KB
testcase_08 AC 103 ms
76,088 KB
testcase_09 AC 102 ms
76,940 KB
testcase_10 AC 113 ms
75,044 KB
testcase_11 AC 109 ms
75,776 KB
testcase_12 AC 108 ms
75,544 KB
testcase_13 AC 114 ms
76,112 KB
testcase_14 AC 114 ms
75,308 KB
testcase_15 AC 104 ms
75,680 KB
testcase_16 AC 107 ms
75,532 KB
testcase_17 AC 115 ms
74,860 KB
testcase_18 AC 102 ms
75,816 KB
testcase_19 AC 100 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans =  0
a = 1
for i in range(10):
    print(2 * a , a)
    print(*list(range(a,2*a)))
    x = int(input())
    ans += x * a
    a <<= 1
print(0,1)
print(ans)
0