結果

問題 No.1101 鼻水
ユーザー gew1fw
提出日時 2025-06-12 16:10:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 196 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 53,924 KB
最終ジャッジ日時 2025-06-12 16:10:51
合計ジャッジ時間 2,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

V, T, P = map(int, input().split())

if T == 1:
    k = V // 1
else:
    numerator = V + T - 1
    denominator = T - 1
    k = numerator // denominator

x = V + k
total = (P + 1) * x

print(total)
0