結果

問題 No.63 ポッキーゲーム
ユーザー dogwood0424dogwood0424
提出日時 2017-11-30 01:51:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 448 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 3,622 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-12-24 05:47:36
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,680 KB
testcase_01 AC 142 ms
41,196 KB
testcase_02 AC 146 ms
41,688 KB
testcase_03 AC 149 ms
41,260 KB
testcase_04 AC 147 ms
41,684 KB
testcase_05 AC 145 ms
41,692 KB
testcase_06 AC 151 ms
41,652 KB
testcase_07 AC 149 ms
41,356 KB
testcase_08 AC 150 ms
41,124 KB
testcase_09 AC 158 ms
41,376 KB
testcase_10 AC 155 ms
41,424 KB
testcase_11 AC 448 ms
41,532 KB
testcase_12 AC 151 ms
41,376 KB
testcase_13 AC 447 ms
41,524 KB
testcase_14 AC 161 ms
41,380 KB
testcase_15 AC 155 ms
41,488 KB
testcase_16 AC 149 ms
41,316 KB
testcase_17 AC 434 ms
41,556 KB
testcase_18 AC 150 ms
41,792 KB
testcase_19 AC 189 ms
41,136 KB
testcase_20 AC 161 ms
41,460 KB
testcase_21 AC 163 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No63 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int length=sc.nextInt();
		int K = sc.nextInt();

		int cnt=0;

		do {
			length = length-2*K;

			if(length<=0)	break;

			cnt += K;

		}while(length>K);

		System.out.println(cnt);

	}

}
0