結果

問題 No.57 ミリオンダイス
ユーザー htensaihtensai
提出日時 2019-12-19 13:20:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 296 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 71,004 KB
実行使用メモリ 49,596 KB
最終ジャッジ日時 2023-09-21 06:43:37
合計ジャッジ時間 3,450 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,188 KB
testcase_01 AC 45 ms
49,436 KB
testcase_02 AC 47 ms
49,596 KB
testcase_03 AC 44 ms
49,404 KB
testcase_04 AC 46 ms
49,468 KB
testcase_05 AC 44 ms
49,124 KB
testcase_06 AC 46 ms
49,256 KB
testcase_07 AC 44 ms
49,320 KB
testcase_08 AC 44 ms
49,188 KB
testcase_09 AC 44 ms
49,208 KB
testcase_10 AC 44 ms
49,340 KB
testcase_11 AC 45 ms
49,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        System.out.println(3.5 * n);
    }
}
0