結果

問題 No.63 ポッキーゲーム
ユーザー dogwood0424dogwood0424
提出日時 2017-11-30 01:49:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 3,946 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-05-05 19:04:38
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 101 ms
40,312 KB
testcase_03 AC 114 ms
41,128 KB
testcase_04 AC 112 ms
41,268 KB
testcase_05 AC 102 ms
39,764 KB
testcase_06 WA -
testcase_07 AC 115 ms
40,828 KB
testcase_08 AC 108 ms
39,996 KB
testcase_09 AC 112 ms
41,460 KB
testcase_10 AC 110 ms
40,280 KB
testcase_11 AC 439 ms
40,208 KB
testcase_12 WA -
testcase_13 AC 475 ms
41,340 KB
testcase_14 WA -
testcase_15 AC 115 ms
40,152 KB
testcase_16 AC 106 ms
40,332 KB
testcase_17 AC 429 ms
40,532 KB
testcase_18 AC 122 ms
41,128 KB
testcase_19 AC 167 ms
41,268 KB
testcase_20 AC 120 ms
40,100 KB
testcase_21 AC 175 ms
40,572 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