結果

問題 No.1101 鼻水
ユーザー ks2mks2m
提出日時 2020-07-03 21:31:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 37,220 KB
最終ジャッジ日時 2024-09-16 22:57:09
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,908 KB
testcase_01 AC 49 ms
36,744 KB
testcase_02 AC 47 ms
36,480 KB
testcase_03 AC 48 ms
37,220 KB
testcase_04 AC 47 ms
36,952 KB
testcase_05 AC 48 ms
36,632 KB
testcase_06 AC 48 ms
37,116 KB
testcase_07 AC 48 ms
36,972 KB
testcase_08 AC 47 ms
36,988 KB
testcase_09 AC 48 ms
36,952 KB
testcase_10 AC 48 ms
36,872 KB
testcase_11 AC 48 ms
36,940 KB
testcase_12 AC 48 ms
37,104 KB
testcase_13 AC 48 ms
36,896 KB
testcase_14 AC 48 ms
36,840 KB
testcase_15 AC 47 ms
36,608 KB
testcase_16 AC 48 ms
36,752 KB
testcase_17 AC 47 ms
36,500 KB
testcase_18 AC 49 ms
37,056 KB
testcase_19 AC 51 ms
36,956 KB
testcase_20 AC 50 ms
37,092 KB
testcase_21 AC 50 ms
37,092 KB
testcase_22 AC 48 ms
37,104 KB
testcase_23 AC 47 ms
36,816 KB
testcase_24 AC 48 ms
36,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long v = Integer.parseInt(sa[0]);
		long t = Integer.parseInt(sa[1]);
		long p = Integer.parseInt(sa[2]);
		br.close();

		long val1 = v + v * p;
		long val2 = (val1 + t - 2) / (t - 1);
		System.out.println(val1 + val2);
	}
}
0