結果

問題 No.57 ミリオンダイス
ユーザー htensaihtensai
提出日時 2019-12-19 13:20:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 296 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 75,640 KB
実行使用メモリ 50,436 KB
最終ジャッジ日時 2024-07-07 01:08:25
合計ジャッジ時間 2,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,096 KB
testcase_01 AC 49 ms
50,252 KB
testcase_02 AC 48 ms
50,380 KB
testcase_03 AC 49 ms
50,088 KB
testcase_04 AC 48 ms
50,280 KB
testcase_05 AC 48 ms
49,924 KB
testcase_06 AC 47 ms
50,328 KB
testcase_07 AC 47 ms
49,924 KB
testcase_08 AC 47 ms
50,348 KB
testcase_09 AC 47 ms
50,436 KB
testcase_10 AC 46 ms
50,340 KB
testcase_11 AC 47 ms
50,380 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