結果

問題 No.57 ミリオンダイス
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 12:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-04-26 10:14:32
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,832 KB
testcase_01 AC 123 ms
41,216 KB
testcase_02 AC 122 ms
41,036 KB
testcase_03 AC 120 ms
41,092 KB
testcase_04 AC 125 ms
41,156 KB
testcase_05 AC 111 ms
40,392 KB
testcase_06 AC 126 ms
41,436 KB
testcase_07 AC 120 ms
41,144 KB
testcase_08 AC 123 ms
41,560 KB
testcase_09 AC 121 ms
41,340 KB
testcase_10 AC 120 ms
41,436 KB
testcase_11 AC 130 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        double n = koko.nextInt();
        System.out.println(7*n/2);
    }
}
0