結果

問題 No.128 お年玉(1)
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-09-17 10:35:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 144 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,564 KB
最終ジャッジ日時 2024-10-01 11:07:39
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other TLE * 1 -- * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.128 お年玉(1)
n, m = [int(input()) for i in range(2)]

amount = 0

while n - (amount + 1000) * m >= 0:
    amount += 1000

print(amount)
0