結果

問題 No.604 誕生日のお小遣い
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 19:41:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 73,688 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-06-08 03:29:26
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 119 ms
41,188 KB
testcase_02 AC 119 ms
41,172 KB
testcase_03 WA -
testcase_04 AC 116 ms
41,292 KB
testcase_05 AC 113 ms
40,844 KB
testcase_06 AC 108 ms
40,340 KB
testcase_07 WA -
testcase_08 AC 106 ms
39,964 KB
testcase_09 WA -
testcase_10 AC 119 ms
40,868 KB
testcase_11 AC 108 ms
39,884 KB
testcase_12 AC 123 ms
41,196 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
41,272 KB
testcase_16 WA -
testcase_17 WA -
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 {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();

		long n = a-1+b; //a年間でn円
		if (n >= c) {System.out.println(1);}
		else {
			long x = c/n;
			long y = c%n;
			System.out.println(x*a+y);
		}
	} 
}
0