結果
問題 | No.604 誕生日のお小遣い |
ユーザー | aaaaasatori |
提出日時 | 2018-02-15 19:23:02 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 415 bytes |
コンパイル時間 | 3,034 ms |
コンパイル使用メモリ | 74,548 KB |
実行使用メモリ | 47,220 KB |
最終ジャッジ日時 | 2024-06-08 02:48:21 |
合計ジャッジ時間 | 7,333 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
46,240 KB |
testcase_01 | AC | 103 ms
40,120 KB |
testcase_02 | AC | 105 ms
39,736 KB |
testcase_03 | AC | 119 ms
40,972 KB |
testcase_04 | AC | 118 ms
41,228 KB |
testcase_05 | AC | 118 ms
41,208 KB |
testcase_06 | AC | 114 ms
40,936 KB |
testcase_07 | AC | 104 ms
39,856 KB |
testcase_08 | AC | 105 ms
39,876 KB |
testcase_09 | AC | 119 ms
41,128 KB |
testcase_10 | AC | 118 ms
41,352 KB |
testcase_11 | AC | 110 ms
40,488 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
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); } }