結果

問題 No.604 誕生日のお小遣い
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 19:33:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 46,964 KB
最終ジャッジ日時 2024-06-08 03:09:39
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
46,500 KB
testcase_01 AC 106 ms
40,024 KB
testcase_02 AC 116 ms
41,088 KB
testcase_03 AC 115 ms
41,028 KB
testcase_04 AC 113 ms
41,036 KB
testcase_05 AC 110 ms
41,272 KB
testcase_06 AC 101 ms
39,976 KB
testcase_07 AC 101 ms
40,096 KB
testcase_08 AC 106 ms
40,600 KB
testcase_09 AC 104 ms
41,068 KB
testcase_10 AC 116 ms
41,088 KB
testcase_11 AC 102 ms
39,972 KB
testcase_12 AC 114 ms
40,692 KB
testcase_13 AC 126 ms
41,360 KB
testcase_14 AC 110 ms
41,080 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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