結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,024 KB
testcase_01 AC 104 ms
41,264 KB
testcase_02 AC 101 ms
41,172 KB
testcase_03 AC 96 ms
41,204 KB
testcase_04 AC 102 ms
41,532 KB
testcase_05 AC 103 ms
40,984 KB
testcase_06 AC 109 ms
41,004 KB
testcase_07 AC 108 ms
41,484 KB
testcase_08 AC 108 ms
41,184 KB
testcase_09 AC 111 ms
41,584 KB
testcase_10 AC 109 ms
40,988 KB
testcase_11 AC 108 ms
41,424 KB
testcase_12 AC 107 ms
41,256 KB
testcase_13 AC 99 ms
41,080 KB
testcase_14 AC 110 ms
41,340 KB
testcase_15 AC 107 ms
39,844 KB
testcase_16 AC 109 ms
41,264 KB
testcase_17 AC 108 ms
40,904 KB
testcase_18 AC 114 ms
41,208 KB
testcase_19 AC 107 ms
41,180 KB
testcase_20 AC 104 ms
41,276 KB
testcase_21 AC 118 ms
41,660 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
		int count=0;
		if(l%(2*k)!=0){
			count=l/(2*k);
		}else if(l%(2*k)==0){
			count=l/(2*k)-1;
		}
		System.out.println(count*k);
	}
}
0