結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
45,292 KB
testcase_01 AC 172 ms
82,608 KB
testcase_02 AC 159 ms
46,332 KB
testcase_03 AC 168 ms
82,808 KB
testcase_04 AC 166 ms
46,332 KB
testcase_05 AC 170 ms
41,052 KB
testcase_06 AC 167 ms
41,180 KB
testcase_07 AC 163 ms
41,056 KB
testcase_08 AC 162 ms
41,232 KB
testcase_09 AC 160 ms
41,080 KB
testcase_10 AC 157 ms
41,152 KB
testcase_11 AC 163 ms
40,948 KB
testcase_12 TLE -
testcase_13 AC 175 ms
41,252 KB
testcase_14 AC 161 ms
41,204 KB
testcase_15 TLE -
testcase_16 AC 162 ms
40,988 KB
testcase_17 TLE -
testcase_18 AC 163 ms
40,944 KB
testcase_19 AC 141 ms
40,272 KB
testcase_20 AC 145 ms
39,916 KB
testcase_21 AC 158 ms
41,156 KB
testcase_22 AC 163 ms
41,116 KB
testcase_23 AC 158 ms
82,728 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 = A * k;
		for(sum = (A+B-1)*k;sum >= C;K--) {
			if(K % A == 0) {
				sum -= B;
			}else {
				sum -= 1;
			}
		}
		System.out.println(K + 1);
	}
}
0