結果

問題 No.835 ジュース
ユーザー osakana666666osakana666666
提出日時 2019-08-08 01:48:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,220 KB
最終ジャッジ日時 2024-07-18 18:55:10
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,164 KB
testcase_01 AC 131 ms
40,996 KB
testcase_02 AC 132 ms
41,220 KB
testcase_03 AC 133 ms
41,176 KB
testcase_04 AC 132 ms
41,044 KB
testcase_05 AC 132 ms
40,884 KB
testcase_06 AC 121 ms
39,896 KB
testcase_07 AC 131 ms
40,988 KB
testcase_08 AC 130 ms
40,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    double n = sc.nextInt();
    double juice_total = n * 1.5;
    double num = Math.floor(juice_total);
    int answer = (int) num;
    
    System.out.println(answer);
  }
}
0