結果

問題 No.63 ポッキーゲーム
ユーザー dogwood0424dogwood0424
提出日時 2017-11-30 01:49:39
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2024-11-27 19:21:31
合計ジャッジ時間 9,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 129 ms
41,460 KB
testcase_03 AC 118 ms
39,836 KB
testcase_04 AC 129 ms
41,204 KB
testcase_05 AC 127 ms
40,980 KB
testcase_06 WA -
testcase_07 AC 132 ms
41,136 KB
testcase_08 AC 132 ms
41,004 KB
testcase_09 AC 134 ms
40,848 KB
testcase_10 AC 139 ms
41,016 KB
testcase_11 AC 520 ms
41,120 KB
testcase_12 WA -
testcase_13 AC 516 ms
41,380 KB
testcase_14 WA -
testcase_15 AC 128 ms
39,976 KB
testcase_16 AC 135 ms
41,152 KB
testcase_17 AC 489 ms
41,336 KB
testcase_18 AC 136 ms
41,264 KB
testcase_19 AC 186 ms
40,960 KB
testcase_20 AC 144 ms
41,388 KB
testcase_21 AC 140 ms
40,096 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