結果

問題 No.63 ポッキーゲーム
ユーザー len_proglen_prog
提出日時 2016-06-07 13:11:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 559 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 2,722 ms
コンパイル使用メモリ 73,748 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-06 13:21:12
合計ジャッジ時間 7,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,356 KB
testcase_01 AC 130 ms
41,260 KB
testcase_02 AC 132 ms
41,376 KB
testcase_03 AC 130 ms
41,116 KB
testcase_04 AC 131 ms
41,528 KB
testcase_05 AC 133 ms
41,416 KB
testcase_06 AC 131 ms
41,696 KB
testcase_07 AC 124 ms
40,208 KB
testcase_08 AC 132 ms
40,912 KB
testcase_09 AC 136 ms
41,596 KB
testcase_10 AC 140 ms
41,116 KB
testcase_11 AC 559 ms
41,340 KB
testcase_12 AC 130 ms
39,968 KB
testcase_13 AC 557 ms
41,312 KB
testcase_14 AC 148 ms
41,388 KB
testcase_15 AC 144 ms
41,384 KB
testcase_16 AC 125 ms
40,188 KB
testcase_17 AC 528 ms
41,468 KB
testcase_18 AC 136 ms
41,508 KB
testcase_19 AC 192 ms
41,480 KB
testcase_20 AC 141 ms
41,124 KB
testcase_21 AC 151 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long L,K;
		L = scan.nextInt();
		K = scan.nextInt();
		long haruka_length = K;
		long yu_length = K;
		long yu_total = 0;

		while(L >= 0){
			if(L - haruka_length - yu_length <= 0){
				L -= haruka_length;
			}else{
				yu_total += yu_length;
				L = L - haruka_length - yu_length;
			}
		}
		System.out.println(yu_total);
		scan.close();
	}
}
0