結果

問題 No.57 ミリオンダイス
ユーザー tsunabittsunabit
提出日時 2018-08-15 10:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 4,038 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 57,604 KB
最終ジャッジ日時 2023-10-24 17:25:45
合計ジャッジ時間 6,558 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
56,204 KB
testcase_01 AC 123 ms
57,476 KB
testcase_02 AC 110 ms
56,192 KB
testcase_03 AC 121 ms
57,440 KB
testcase_04 AC 116 ms
57,104 KB
testcase_05 AC 115 ms
57,164 KB
testcase_06 AC 122 ms
57,532 KB
testcase_07 AC 107 ms
55,716 KB
testcase_08 AC 115 ms
56,816 KB
testcase_09 AC 120 ms
57,504 KB
testcase_10 AC 117 ms
57,440 KB
testcase_11 AC 124 ms
57,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No57 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(n * 3.5);
    }
}
0