結果

問題 No.51 やる気の問題
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-07 17:32:39
言語 Python2
(2.7.18)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 171 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-07-19 04:53:35
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 13 ms
6,016 KB
testcase_04 AC 10 ms
6,016 KB
testcase_05 AC 47 ms
6,016 KB
testcase_06 AC 38 ms
6,144 KB
testcase_07 AC 37 ms
6,144 KB
testcase_08 AC 26 ms
6,144 KB
testcase_09 AC 65 ms
6,144 KB
testcase_10 AC 26 ms
6,144 KB
testcase_11 AC 25 ms
6,144 KB
testcase_12 AC 39 ms
6,144 KB
testcase_13 AC 41 ms
6,144 KB
testcase_14 AC 32 ms
6,144 KB
testcase_15 AC 52 ms
6,016 KB
testcase_16 AC 21 ms
6,016 KB
testcase_17 AC 14 ms
6,144 KB
testcase_18 AC 57 ms
6,144 KB
testcase_19 AC 57 ms
6,144 KB
testcase_20 AC 39 ms
6,144 KB
testcase_21 AC 15 ms
6,144 KB
testcase_22 AC 63 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
w = int(raw_input())
d = int(raw_input())

for i in xrange(d-1):
    nokori = d - i
    yaruki = float(w) / nokori / nokori
    w -= int(yaruki)
print w
0