結果

問題 No.57 ミリオンダイス
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 12:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-11-09 00:44:20
合計ジャッジ時間 3,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,096 KB
testcase_01 AC 118 ms
41,304 KB
testcase_02 AC 116 ms
41,396 KB
testcase_03 AC 112 ms
41,248 KB
testcase_04 AC 115 ms
41,336 KB
testcase_05 AC 117 ms
41,344 KB
testcase_06 AC 108 ms
41,596 KB
testcase_07 AC 104 ms
41,832 KB
testcase_08 AC 110 ms
40,208 KB
testcase_09 AC 115 ms
41,252 KB
testcase_10 AC 115 ms
41,528 KB
testcase_11 AC 121 ms
41,292 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