結果

問題 No.57 ミリオンダイス
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-05-04 01:56:30
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,500 KB
testcase_01 AC 116 ms
41,488 KB
testcase_02 AC 106 ms
40,832 KB
testcase_03 AC 113 ms
41,236 KB
testcase_04 AC 119 ms
41,648 KB
testcase_05 AC 106 ms
40,096 KB
testcase_06 AC 101 ms
40,324 KB
testcase_07 AC 102 ms
40,308 KB
testcase_08 AC 112 ms
41,472 KB
testcase_09 AC 106 ms
40,352 KB
testcase_10 AC 107 ms
40,360 KB
testcase_11 AC 118 ms
41,492 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