結果

問題 No.57 ミリオンダイス
ユーザー GrenacheGrenache
提出日時 2015-08-01 13:09:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 72,116 KB
実行使用メモリ 56,396 KB
最終ジャッジ日時 2023-08-09 00:38:18
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,748 KB
testcase_01 AC 124 ms
56,104 KB
testcase_02 AC 124 ms
56,108 KB
testcase_03 AC 124 ms
55,888 KB
testcase_04 AC 125 ms
55,888 KB
testcase_05 AC 124 ms
55,868 KB
testcase_06 AC 120 ms
56,396 KB
testcase_07 AC 124 ms
55,784 KB
testcase_08 AC 122 ms
55,696 KB
testcase_09 AC 121 ms
55,780 KB
testcase_10 AC 124 ms
55,820 KB
testcase_11 AC 126 ms
55,604 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