結果

問題 No.57 ミリオンダイス
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:48:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 50,580 KB
最終ジャッジ日時 2024-09-13 09:17:33
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,824 KB
testcase_01 AC 54 ms
50,064 KB
testcase_02 AC 52 ms
50,332 KB
testcase_03 AC 53 ms
49,932 KB
testcase_04 AC 53 ms
50,152 KB
testcase_05 AC 53 ms
50,580 KB
testcase_06 AC 53 ms
50,268 KB
testcase_07 AC 53 ms
50,252 KB
testcase_08 AC 53 ms
50,196 KB
testcase_09 AC 54 ms
49,940 KB
testcase_10 AC 53 ms
50,232 KB
testcase_11 AC 55 ms
50,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader =new BufferedReader(new InputStreamReader(System.in));
        System.out.println((Integer.parseInt(reader.readLine()) * 3.5));
    }

}
0