結果

問題 No.63 ポッキーゲーム
ユーザー 水野嶺水野嶺
提出日時 2020-05-20 16:49:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 329 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-01 23:39:37
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,780 KB
testcase_01 AC 128 ms
54,112 KB
testcase_02 AC 120 ms
53,276 KB
testcase_03 AC 123 ms
54,016 KB
testcase_04 AC 122 ms
54,108 KB
testcase_05 AC 123 ms
53,944 KB
testcase_06 AC 120 ms
53,852 KB
testcase_07 AC 121 ms
54,056 KB
testcase_08 AC 122 ms
54,028 KB
testcase_09 AC 126 ms
54,064 KB
testcase_10 AC 129 ms
53,752 KB
testcase_11 AC 325 ms
54,108 KB
testcase_12 AC 134 ms
54,164 KB
testcase_13 AC 329 ms
53,840 KB
testcase_14 AC 133 ms
53,952 KB
testcase_15 AC 131 ms
54,076 KB
testcase_16 AC 126 ms
54,048 KB
testcase_17 AC 315 ms
54,044 KB
testcase_18 AC 126 ms
54,012 KB
testcase_19 AC 157 ms
53,884 KB
testcase_20 AC 127 ms
54,076 KB
testcase_21 AC 134 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  l = sc.nextInt();
		int  k = sc.nextInt();
		int count=0;
		
		while(l > k*2){
			l -= k*2;
			count +=1;
		}
		
		System.out.println(k*count);
		
	}
}
0