結果

問題 No.604 誕生日のお小遣い
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 19:30:41
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 5,151 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 82,980 KB
最終ジャッジ日時 2024-12-26 19:18:36
合計ジャッジ時間 9,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
46,528 KB
testcase_01 AC 123 ms
41,104 KB
testcase_02 AC 121 ms
41,064 KB
testcase_03 AC 114 ms
40,088 KB
testcase_04 AC 125 ms
41,168 KB
testcase_05 AC 125 ms
41,136 KB
testcase_06 WA -
testcase_07 AC 134 ms
41,256 KB
testcase_08 AC 126 ms
41,088 KB
testcase_09 AC 123 ms
40,764 KB
testcase_10 AC 132 ms
41,164 KB
testcase_11 AC 128 ms
41,392 KB
testcase_12 AC 121 ms
41,056 KB
testcase_13 AC 131 ms
41,080 KB
testcase_14 AC 120 ms
41,216 KB
testcase_15 TLE -
testcase_16 AC 126 ms
41,216 KB
testcase_17 AC 138 ms
40,112 KB
testcase_18 AC 134 ms
41,284 KB
testcase_19 AC 132 ms
39,740 KB
testcase_20 AC 132 ms
41,236 KB
testcase_21 AC 129 ms
41,272 KB
testcase_22 AC 129 ms
40,920 KB
testcase_23 AC 129 ms
82,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No604 {
	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 k,K,sum;
		for(k = 0;(A+B-1) * k < C;k++) {
		}
		k -= 1;
		sum = (A+B-1) * k;
		if(C - sum < A - 1) {
			K = C - sum;
		}else {
			K = A;
		}
		System.out.println(k * A + K);
	}
}

0