結果

問題 No.2828 Remainder Game
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-02 22:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 77,716 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 22:17:12
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
75,848 KB
testcase_01 AC 107 ms
75,740 KB
testcase_02 AC 107 ms
76,080 KB
testcase_03 AC 108 ms
76,384 KB
testcase_04 AC 108 ms
76,272 KB
testcase_05 AC 108 ms
76,332 KB
testcase_06 AC 104 ms
77,236 KB
testcase_07 AC 108 ms
76,972 KB
testcase_08 AC 110 ms
76,768 KB
testcase_09 AC 110 ms
76,336 KB
testcase_10 AC 109 ms
76,996 KB
testcase_11 AC 108 ms
77,716 KB
testcase_12 AC 106 ms
75,496 KB
testcase_13 AC 109 ms
77,068 KB
testcase_14 AC 104 ms
75,872 KB
testcase_15 AC 107 ms
75,504 KB
testcase_16 AC 106 ms
77,276 KB
testcase_17 AC 109 ms
76,720 KB
testcase_18 AC 106 ms
76,264 KB
testcase_19 AC 108 ms
77,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=0
for i in range(1,11):
	a=list(range(1<<i))
	a=a[len(a)//2:]
	print(1<<i,len(a))
	print(*a)
	g+=(1<<(i-1))*int(input())
print(0,1)
print(g)
0