結果

問題 No.604 誕生日のお小遣い
ユーザー YamaKasaYamaKasa
提出日時 2018-09-26 16:08:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 73,640 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-10-11 00:25:03
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
41,172 KB
testcase_02 AC 121 ms
40,140 KB
testcase_03 AC 135 ms
41,368 KB
testcase_04 AC 133 ms
41,212 KB
testcase_05 AC 133 ms
41,592 KB
testcase_06 AC 134 ms
41,252 KB
testcase_07 AC 135 ms
41,600 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 135 ms
41,444 KB
testcase_11 AC 132 ms
41,424 KB
testcase_12 AC 136 ms
41,116 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 136 ms
41,388 KB
testcase_16 WA -
testcase_17 AC 141 ms
41,244 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long A = scan.nextLong();
		long B = scan.nextLong();
		long C = scan.nextLong();
		scan.close();
		long t = C / (A + B - 1);
		long ans = t * A + C - t * (A + B - 1);
		System.out.println(ans);
	}
}
0