結果

問題 No.63 ポッキーゲーム
ユーザー リチウムリチウム
提出日時 2014-11-11 23:28:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-06-10 02:29:01
合計ジャッジ時間 6,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
39,748 KB
testcase_01 AC 104 ms
40,048 KB
testcase_02 AC 133 ms
41,444 KB
testcase_03 AC 134 ms
41,236 KB
testcase_04 WA -
testcase_05 AC 114 ms
41,172 KB
testcase_06 AC 109 ms
40,932 KB
testcase_07 AC 97 ms
39,524 KB
testcase_08 AC 110 ms
41,232 KB
testcase_09 AC 113 ms
41,388 KB
testcase_10 AC 124 ms
41,392 KB
testcase_11 AC 103 ms
39,628 KB
testcase_12 AC 111 ms
41,124 KB
testcase_13 WA -
testcase_14 AC 111 ms
41,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 114 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class ok{
	public static void main(String[] args) {
		Scanner sc=new Scanner (System.in);
		int L=sc.nextInt();
		int K=sc.nextInt();
		int ans=0;
		ans=L/(K*2);
		ans*=K;
		
		System.out.println(ans);
	}}
0