結果

問題 No.57 ミリオンダイス
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:46:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 71,172 KB
実行使用メモリ 49,420 KB
最終ジャッジ日時 2023-10-11 10:09:48
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,284 KB
testcase_01 WA -
testcase_02 AC 42 ms
49,212 KB
testcase_03 AC 42 ms
49,148 KB
testcase_04 AC 43 ms
49,376 KB
testcase_05 AC 42 ms
49,408 KB
testcase_06 AC 43 ms
49,208 KB
testcase_07 AC 42 ms
49,324 KB
testcase_08 AC 42 ms
49,196 KB
testcase_09 AC 42 ms
49,088 KB
testcase_10 AC 42 ms
49,348 KB
testcase_11 AC 42 ms
49,264 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