結果

問題 No.2706 One Nafmo
ユーザー toshiro_yanagi
提出日時 2025-03-30 23:44:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2025-03-30 23:45:01
合計ジャッジ時間 1,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 5 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

def fun(s, p, x):
    return (x // s + 1 if x % s != 0 else 0) * p


a, b, x = map(int, input().split())
print(fun(a, b, x))
0