結果

問題 No.604 誕生日のお小遣い
ユーザー GrenacheGrenache
提出日時 2017-12-10 16:00:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 3,801 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 56,356 KB
最終ジャッジ日時 2024-05-07 16:56:11
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 115 ms
52,976 KB
testcase_02 AC 124 ms
53,852 KB
testcase_03 AC 125 ms
54,232 KB
testcase_04 AC 130 ms
54,332 KB
testcase_05 AC 127 ms
54,204 KB
testcase_06 AC 124 ms
54,232 KB
testcase_07 AC 113 ms
53,192 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 114 ms
52,924 KB
testcase_11 AC 127 ms
54,324 KB
testcase_12 AC 127 ms
41,300 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 126 ms
41,532 KB
testcase_16 WA -
testcase_17 AC 129 ms
41,332 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder604 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();

		if (c <= a) {
			pr.println(c);
		} else {
			long tmp = a - 1 + b;

			pr.println(c / tmp * a + c - c / tmp * tmp);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0