結果

問題 No.57 ミリオンダイス
ユーザー tsunabittsunabit
提出日時 2018-08-15 10:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 3,705 ms
コンパイル使用メモリ 76,096 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-09-24 09:21:43
合計ジャッジ時間 5,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,012 KB
testcase_01 AC 114 ms
53,100 KB
testcase_02 AC 127 ms
54,028 KB
testcase_03 AC 116 ms
54,076 KB
testcase_04 AC 129 ms
54,216 KB
testcase_05 AC 130 ms
54,144 KB
testcase_06 AC 128 ms
54,296 KB
testcase_07 AC 129 ms
53,852 KB
testcase_08 AC 115 ms
53,024 KB
testcase_09 AC 130 ms
54,200 KB
testcase_10 AC 129 ms
54,296 KB
testcase_11 AC 127 ms
54,168 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