結果

問題 No.2828 Remainder Game
ユーザー のーとのーと
提出日時 2024-11-07 12:13:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,048 KB
平均クエリ数 24.00
最終ジャッジ日時 2024-11-07 12:13:50
合計ジャッジ時間 5,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
77,704 KB
testcase_01 AC 133 ms
77,792 KB
testcase_02 AC 133 ms
78,048 KB
testcase_03 AC 138 ms
77,536 KB
testcase_04 AC 130 ms
77,536 KB
testcase_05 AC 131 ms
77,288 KB
testcase_06 AC 131 ms
77,800 KB
testcase_07 AC 131 ms
77,800 KB
testcase_08 AC 132 ms
77,800 KB
testcase_09 AC 138 ms
77,928 KB
testcase_10 AC 143 ms
77,928 KB
testcase_11 AC 147 ms
77,032 KB
testcase_12 AC 180 ms
77,928 KB
testcase_13 AC 135 ms
77,800 KB
testcase_14 AC 131 ms
77,544 KB
testcase_15 AC 132 ms
77,920 KB
testcase_16 AC 129 ms
77,400 KB
testcase_17 AC 131 ms
77,792 KB
testcase_18 AC 131 ms
77,664 KB
testcase_19 AC 130 ms
77,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
for i in range(11):
	R=[j for j in range(2**i,2**(i+1))]
	print(2**(i+1),len(R))
	print(*R)
	C=int(input())
	ans+=C*(2**i)

print(0,1)
print(ans)
0