結果

問題 No.57 ミリオンダイス
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:17:25
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

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