結果

問題 No.57 ミリオンダイス
ユーザー GrenacheGrenache
提出日時 2015-08-01 13:09:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 3,464 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-11-14 05:54:03
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,320 KB
testcase_01 AC 136 ms
54,188 KB
testcase_02 AC 139 ms
54,132 KB
testcase_03 AC 135 ms
53,972 KB
testcase_04 AC 136 ms
53,720 KB
testcase_05 AC 135 ms
53,856 KB
testcase_06 AC 123 ms
52,776 KB
testcase_07 AC 135 ms
54,264 KB
testcase_08 AC 135 ms
54,148 KB
testcase_09 AC 136 ms
54,308 KB
testcase_10 AC 137 ms
54,028 KB
testcase_11 AC 134 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder57 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        System.out.printf("%.3f\n", 3.5 * n);
        
        sc.close();
    }
}
0