結果

問題 No.57 ミリオンダイス
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:48:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 71,756 KB
実行使用メモリ 49,796 KB
最終ジャッジ日時 2023-10-11 10:09:57
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,236 KB
testcase_01 AC 43 ms
49,288 KB
testcase_02 AC 43 ms
49,796 KB
testcase_03 AC 42 ms
49,100 KB
testcase_04 AC 43 ms
49,100 KB
testcase_05 AC 42 ms
49,284 KB
testcase_06 AC 42 ms
49,364 KB
testcase_07 AC 43 ms
49,208 KB
testcase_08 AC 42 ms
49,344 KB
testcase_09 AC 43 ms
49,420 KB
testcase_10 AC 42 ms
47,300 KB
testcase_11 AC 42 ms
49,484 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