結果

問題 No.51 やる気の問題
ユーザー akanayaakanaya
提出日時 2020-03-22 17:33:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 577 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,408 KB
最終ジャッジ日時 2024-06-07 03:34:48
合計ジャッジ時間 14,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,192 KB
testcase_01 AC 515 ms
44,056 KB
testcase_02 AC 529 ms
44,116 KB
testcase_03 AC 535 ms
44,188 KB
testcase_04 AC 534 ms
44,064 KB
testcase_05 AC 560 ms
44,188 KB
testcase_06 AC 557 ms
44,120 KB
testcase_07 AC 553 ms
44,192 KB
testcase_08 AC 543 ms
44,184 KB
testcase_09 AC 577 ms
44,316 KB
testcase_10 AC 549 ms
44,068 KB
testcase_11 AC 540 ms
44,064 KB
testcase_12 AC 548 ms
44,064 KB
testcase_13 AC 548 ms
44,408 KB
testcase_14 AC 546 ms
44,204 KB
testcase_15 AC 562 ms
44,064 KB
testcase_16 AC 539 ms
44,316 KB
testcase_17 AC 532 ms
44,188 KB
testcase_18 AC 562 ms
44,072 KB
testcase_19 AC 567 ms
44,068 KB
testcase_20 AC 556 ms
44,192 KB
testcase_21 AC 533 ms
44,188 KB
testcase_22 AC 577 ms
44,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np
import queue
import sys 

input = sys.stdin.readline
# sys.setrecursionlimit(25000)

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

task = 0
ans = -1
while(True):
    task = math.floor(w / d / d )
    w -= task
    d -= 1

    if w <= 0:
        break
    
print(task)

    
0