結果
| 問題 |
No.1101 鼻水
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 21:00:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 196 bytes |
| コンパイル時間 | 172 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2025-06-12 21:03:43 |
| 合計ジャッジ時間 | 1,922 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | WA * 22 |
ソースコード
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)
gew1fw