結果

問題 No.835 ジュース
ユーザー tentententen
提出日時 2020-11-12 18:05:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 5,555 ms
コンパイル使用メモリ 70,840 KB
実行使用メモリ 58,200 KB
最終ジャッジ日時 2023-09-30 01:44:30
合計ジャッジ時間 4,021 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,708 KB
testcase_01 AC 125 ms
55,992 KB
testcase_02 AC 127 ms
55,752 KB
testcase_03 AC 122 ms
55,800 KB
testcase_04 AC 128 ms
56,096 KB
testcase_05 AC 128 ms
55,924 KB
testcase_06 AC 126 ms
55,720 KB
testcase_07 AC 124 ms
56,092 KB
testcase_08 AC 123 ms
58,200 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