結果

問題 No.57 ミリオンダイス
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 2,841 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-11-25 07:51:12
合計ジャッジ時間 4,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,960 KB
testcase_01 AC 113 ms
52,700 KB
testcase_02 AC 114 ms
52,520 KB
testcase_03 AC 130 ms
53,912 KB
testcase_04 AC 128 ms
53,864 KB
testcase_05 AC 107 ms
52,540 KB
testcase_06 AC 118 ms
54,080 KB
testcase_07 AC 118 ms
53,568 KB
testcase_08 AC 118 ms
53,896 KB
testcase_09 AC 128 ms
54,176 KB
testcase_10 AC 123 ms
54,040 KB
testcase_11 AC 127 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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