結果

問題 No.835 ジュース
ユーザー planetWorldYplanetWorldY
提出日時 2020-02-29 14:11:24
言語 Java19
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 4,180 ms
コンパイル使用メモリ 70,652 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2023-08-03 22:48:42
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
55,568 KB
testcase_01 AC 128 ms
55,632 KB
testcase_02 AC 128 ms
55,600 KB
testcase_03 AC 127 ms
55,908 KB
testcase_04 AC 127 ms
55,992 KB
testcase_05 AC 127 ms
53,772 KB
testcase_06 AC 125 ms
55,596 KB
testcase_07 AC 126 ms
55,748 KB
testcase_08 AC 127 ms
55,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
       Scanner sc = new Scanner(System.in);
       int number = sc.nextInt();
        System.out.println(number + number/2);
    }
}
0