結果

問題 No.604 誕生日のお小遣い
ユーザー htensaihtensai
提出日時 2019-11-14 11:49:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 73,608 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-09-21 21:22:42
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
41,084 KB
testcase_02 AC 119 ms
40,096 KB
testcase_03 AC 134 ms
41,208 KB
testcase_04 AC 132 ms
41,200 KB
testcase_05 AC 134 ms
41,184 KB
testcase_06 AC 137 ms
41,312 KB
testcase_07 AC 136 ms
41,156 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 132 ms
41,280 KB
testcase_11 AC 133 ms
40,960 KB
testcase_12 AC 132 ms
41,164 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
41,276 KB
testcase_16 WA -
testcase_17 AC 133 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.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();
		long money = (a - 1) + b;
		long count = c / money;
		long mod = c % money;
		long ans = count * a + mod;
	    System.out.println(ans);
	}
}
0