結果

問題 No.835 ジュース
ユーザー tentententen
提出日時 2020-11-12 18:05:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-07-22 19:41:40
合計ジャッジ時間 4,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,040 KB
testcase_01 AC 130 ms
41,156 KB
testcase_02 AC 129 ms
41,428 KB
testcase_03 AC 128 ms
40,876 KB
testcase_04 AC 130 ms
41,156 KB
testcase_05 AC 131 ms
41,156 KB
testcase_06 AC 136 ms
41,120 KB
testcase_07 AC 131 ms
40,944 KB
testcase_08 AC 138 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextInt();
        System.out.println((15 * n) / 10);
    }
}
0