結果

問題 No.51 やる気の問題
ユーザー utsumidaisukeutsumidaisuke
提出日時 2018-12-13 10:52:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 699 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,316 KB
最終ジャッジ日時 2024-09-25 04:16:08
合計ジャッジ時間 16,679 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
43,904 KB
testcase_01 AC 505 ms
44,284 KB
testcase_02 AC 508 ms
43,920 KB
testcase_03 AC 514 ms
43,916 KB
testcase_04 AC 514 ms
43,912 KB
testcase_05 AC 635 ms
43,928 KB
testcase_06 AC 598 ms
44,176 KB
testcase_07 AC 592 ms
43,904 KB
testcase_08 AC 568 ms
43,900 KB
testcase_09 AC 699 ms
43,908 KB
testcase_10 AC 572 ms
44,184 KB
testcase_11 AC 572 ms
44,296 KB
testcase_12 AC 614 ms
44,176 KB
testcase_13 AC 611 ms
44,316 KB
testcase_14 AC 580 ms
43,908 KB
testcase_15 AC 669 ms
44,164 KB
testcase_16 AC 547 ms
44,032 KB
testcase_17 AC 529 ms
44,048 KB
testcase_18 AC 661 ms
44,048 KB
testcase_19 AC 662 ms
43,900 KB
testcase_20 AC 586 ms
44,028 KB
testcase_21 AC 521 ms
43,924 KB
testcase_22 AC 689 ms
43,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

w = int(input())
d = int(input())

cnt = 1
aw = []
while w > 0:
    wd = int(np.floor(w/(d**2)))
    w = w - wd
    aw.append(wd)
    d -= 1
    cnt += 1
print(aw[-1])
0