結果

問題 No.560 ふしぎなナップサック
ユーザー ntudantuda
提出日時 2024-01-10 23:22:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2024-09-27 20:22:15
合計ジャッジ時間 1,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,700 KB
testcase_01 AC 34 ms
51,960 KB
testcase_02 AC 34 ms
53,356 KB
testcase_03 AC 34 ms
52,932 KB
testcase_04 AC 35 ms
52,456 KB
testcase_05 AC 34 ms
53,328 KB
testcase_06 AC 34 ms
52,676 KB
testcase_07 AC 33 ms
52,656 KB
testcase_08 AC 34 ms
53,292 KB
testcase_09 AC 35 ms
52,584 KB
testcase_10 AC 35 ms
53,156 KB
testcase_11 AC 35 ms
52,064 KB
testcase_12 AC 33 ms
51,816 KB
testcase_13 AC 33 ms
53,136 KB
testcase_14 AC 33 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,N = map(int,input().split())
a = 1
for i in range(N):
    M *= 3
    M += a
    M /= 3
print(M/a)
0