結果

問題 No.57 ミリオンダイス
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:46:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-09-13 09:17:25
合計ジャッジ時間 3,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,364 KB
testcase_01 WA -
testcase_02 AC 55 ms
50,236 KB
testcase_03 AC 55 ms
49,936 KB
testcase_04 AC 54 ms
50,392 KB
testcase_05 AC 53 ms
50,172 KB
testcase_06 AC 55 ms
50,256 KB
testcase_07 AC 54 ms
49,844 KB
testcase_08 AC 54 ms
49,816 KB
testcase_09 AC 54 ms
50,136 KB
testcase_10 AC 54 ms
49,832 KB
testcase_11 AC 54 ms
50,088 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((int)(Integer.parseInt(reader.readLine()) * 3.5));
    }

}
0