結果

問題 No.604 誕生日のお小遣い
ユーザー htensaihtensai
提出日時 2019-11-14 11:52:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 396 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-11-21 19:31:32
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
49,952 KB
testcase_01 AC 138 ms
50,184 KB
testcase_02 AC 133 ms
50,068 KB
testcase_03 AC 136 ms
50,440 KB
testcase_04 AC 136 ms
50,404 KB
testcase_05 AC 133 ms
50,096 KB
testcase_06 AC 133 ms
50,276 KB
testcase_07 AC 136 ms
49,780 KB
testcase_08 AC 145 ms
50,328 KB
testcase_09 AC 137 ms
49,788 KB
testcase_10 AC 137 ms
50,328 KB
testcase_11 AC 143 ms
49,696 KB
testcase_12 AC 138 ms
49,948 KB
testcase_13 AC 139 ms
50,208 KB
testcase_14 AC 135 ms
50,116 KB
testcase_15 AC 134 ms
49,760 KB
testcase_16 AC 137 ms
49,760 KB
testcase_17 AC 137 ms
50,252 KB
testcase_18 AC 134 ms
49,700 KB
testcase_19 AC 134 ms
50,104 KB
testcase_20 AC 139 ms
50,084 KB
testcase_21 AC 136 ms
49,828 KB
testcase_22 AC 135 ms
50,116 KB
testcase_23 AC 135 ms
50,064 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		if (mod >= a) {
		    count++;
		    mod = 0;
		}
		long ans = count * a + mod;
	    System.out.println(ans);
	}
}
0