結果

問題 No.57 ミリオンダイス
ユーザー Grenache
提出日時 2015-08-01 13:09:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 3,464 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-11-14 05:54:03
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

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