結果

問題 No.63 ポッキーゲーム
ユーザー 37zigen37zigen
提出日時 2016-04-01 14:31:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-06-06 13:16:50
合計ジャッジ時間 5,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,196 KB
testcase_01 AC 119 ms
41,528 KB
testcase_02 AC 117 ms
41,172 KB
testcase_03 AC 118 ms
41,312 KB
testcase_04 AC 119 ms
41,300 KB
testcase_05 AC 118 ms
41,132 KB
testcase_06 AC 117 ms
41,552 KB
testcase_07 AC 133 ms
41,020 KB
testcase_08 AC 119 ms
41,128 KB
testcase_09 AC 119 ms
41,196 KB
testcase_10 AC 121 ms
41,336 KB
testcase_11 AC 126 ms
41,324 KB
testcase_12 AC 107 ms
39,604 KB
testcase_13 AC 123 ms
41,324 KB
testcase_14 AC 119 ms
41,240 KB
testcase_15 AC 120 ms
41,028 KB
testcase_16 AC 124 ms
41,260 KB
testcase_17 AC 106 ms
40,040 KB
testcase_18 AC 117 ms
41,356 KB
testcase_19 AC 116 ms
41,324 KB
testcase_20 AC 119 ms
41,180 KB
testcase_21 AC 118 ms
40,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder063;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int l=sc.nextInt();//ポッキーの長さ Lmm
		int k=sc.nextInt();//お互いが1回にかじるポッキーの長さ Kmm
		System.out.println((l-1)/(2*k)*k);
	}
}
0