結果

問題 No.63 ポッキーゲーム
ユーザー rf141rf141
提出日時 2015-08-06 20:43:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 3,679 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-12-24 04:53:51
合計ジャッジ時間 7,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,040 KB
testcase_01 AC 139 ms
41,320 KB
testcase_02 AC 139 ms
41,176 KB
testcase_03 AC 135 ms
41,404 KB
testcase_04 AC 123 ms
40,064 KB
testcase_05 AC 134 ms
41,436 KB
testcase_06 AC 139 ms
41,208 KB
testcase_07 AC 147 ms
41,384 KB
testcase_08 AC 142 ms
41,108 KB
testcase_09 AC 132 ms
41,080 KB
testcase_10 AC 136 ms
41,096 KB
testcase_11 AC 137 ms
40,992 KB
testcase_12 AC 133 ms
41,160 KB
testcase_13 AC 137 ms
41,264 KB
testcase_14 AC 137 ms
41,052 KB
testcase_15 AC 138 ms
41,124 KB
testcase_16 AC 139 ms
41,200 KB
testcase_17 AC 122 ms
39,812 KB
testcase_18 AC 124 ms
40,596 KB
testcase_19 AC 137 ms
40,980 KB
testcase_20 AC 139 ms
41,092 KB
testcase_21 AC 138 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class pocky{
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int L = scan.nextInt();
		int K = scan.nextInt();
		System.out.println(eat(L,K));
	}
	public static int eat(int l,int k){
		return (l-1)/(k*2)*k; 
	}
}
0