結果

問題 No.51 やる気の問題
ユーザー バカらっく
提出日時 2019-09-12 07:22:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-02 16:57:17
合計ジャッジ時間 2,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

totalWork = int(input())
totalDays = int(input())

remainWork = totalWork;

if (totalDays > 1):
    for i in reversed(range(2, totalDays + 1)):
        remainWork -= int(remainWork / (i * i))

print(remainWork)
0