結果

問題 No.63 ポッキーゲーム
ユーザー mustonmuston
提出日時 2016-05-20 15:54:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 3,388 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-06-06 13:19:28
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,908 KB
testcase_01 AC 112 ms
53,724 KB
testcase_02 AC 103 ms
52,760 KB
testcase_03 AC 106 ms
53,004 KB
testcase_04 AC 107 ms
53,544 KB
testcase_05 AC 111 ms
53,768 KB
testcase_06 AC 112 ms
54,008 KB
testcase_07 AC 97 ms
52,380 KB
testcase_08 AC 110 ms
53,848 KB
testcase_09 AC 105 ms
52,884 KB
testcase_10 AC 100 ms
52,672 KB
testcase_11 AC 110 ms
53,720 KB
testcase_12 AC 98 ms
52,604 KB
testcase_13 AC 110 ms
53,652 KB
testcase_14 AC 113 ms
53,700 KB
testcase_15 AC 111 ms
53,972 KB
testcase_16 AC 100 ms
52,600 KB
testcase_17 AC 107 ms
53,840 KB
testcase_18 AC 111 ms
53,788 KB
testcase_19 AC 102 ms
52,660 KB
testcase_20 AC 101 ms
52,584 KB
testcase_21 AC 105 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
/*yukicoder No63 ポッキーゲーム*/
class No63{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    double l = scan.nextInt();  //ポッキーの長さ
    double k = scan.nextInt();  //一度に食べ進める長さ
    double count = 0;  //食べた回数
    double yuu = 0;  //ユウちゃんが食べた長さ
    //ユウちゃんが食べた回数を出す
    count = Math.ceil(l/(k*2))-1;
    //ユウちゃんが食べた長さを出力
    yuu = count * k;
    System.out.println((int)yuu);
  }
}
0