結果

問題 No.2828 Remainder Game
ユーザー のーとのーと
提出日時 2024-11-07 12:04:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,640 KB
平均クエリ数 28.00
最終ジャッジ日時 2024-11-07 12:05:11
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
80,992 KB
testcase_01 AC 140 ms
81,120 KB
testcase_02 AC 139 ms
80,864 KB
testcase_03 AC 140 ms
80,736 KB
testcase_04 AC 145 ms
80,608 KB
testcase_05 AC 137 ms
80,616 KB
testcase_06 AC 144 ms
81,000 KB
testcase_07 AC 139 ms
81,216 KB
testcase_08 AC 139 ms
81,640 KB
testcase_09 AC 138 ms
80,744 KB
testcase_10 AC 138 ms
80,744 KB
testcase_11 AC 139 ms
80,744 KB
testcase_12 AC 139 ms
80,616 KB
testcase_13 AC 146 ms
81,384 KB
testcase_14 AC 140 ms
81,000 KB
testcase_15 AC 139 ms
80,992 KB
testcase_16 AC 140 ms
80,608 KB
testcase_17 AC 141 ms
81,120 KB
testcase_18 AC 140 ms
80,992 KB
testcase_19 AC 141 ms
80,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
for i in range(15):
    M=2**(i+1)
    if M>10000:
    	break
    R=[]
    for j in range(M):
	    if j&(2**i)!=0:
		    R.append(j)
    print(M,len(R))
    print(*R)
    cnt=int(input())
    ans+=(2**i)*cnt
print(0,1)
print(ans)
0