結果

問題 No.63 ポッキーゲーム
ユーザー takutakutakutaku
提出日時 2020-09-17 10:35:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-22 06:27:07
合計ジャッジ時間 4,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,572 KB
testcase_01 AC 117 ms
53,908 KB
testcase_02 AC 102 ms
52,564 KB
testcase_03 AC 99 ms
52,756 KB
testcase_04 AC 112 ms
53,896 KB
testcase_05 AC 112 ms
53,908 KB
testcase_06 AC 115 ms
54,048 KB
testcase_07 AC 99 ms
52,768 KB
testcase_08 AC 116 ms
53,916 KB
testcase_09 AC 118 ms
53,012 KB
testcase_10 AC 118 ms
53,856 KB
testcase_11 AC 119 ms
54,116 KB
testcase_12 AC 114 ms
54,044 KB
testcase_13 AC 111 ms
53,768 KB
testcase_14 AC 102 ms
52,700 KB
testcase_15 AC 114 ms
53,688 KB
testcase_16 AC 114 ms
54,036 KB
testcase_17 AC 104 ms
52,920 KB
testcase_18 AC 101 ms
52,776 KB
testcase_19 AC 115 ms
54,180 KB
testcase_20 AC 113 ms
54,048 KB
testcase_21 AC 96 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        int k = sc.nextInt();
        
        // 一度に齧る二人分のポッキーの距離
        int b = k * 2;
        
        // 齧る回数と残る距離
        int n = l / b;
        int m = l % b;
        
        // 辻褄合わせ
        if(m == 0) {
            n--;
        }
        
        System.out.println(n * k);
        
	}
}

0