結果

問題 No.57 ミリオンダイス
ユーザー itezpaceitezpace
提出日時 2016-08-21 12:27:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-11-14 06:15:20
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,200 KB
testcase_01 AC 151 ms
54,368 KB
testcase_02 AC 145 ms
54,300 KB
testcase_03 AC 146 ms
54,400 KB
testcase_04 AC 145 ms
54,108 KB
testcase_05 AC 145 ms
54,244 KB
testcase_06 AC 145 ms
54,072 KB
testcase_07 AC 144 ms
54,152 KB
testcase_08 AC 143 ms
54,312 KB
testcase_09 AC 145 ms
54,164 KB
testcase_10 AC 143 ms
54,244 KB
testcase_11 AC 144 ms
54,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki57 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    double n = sc.nextDouble();
    double x = n * 3.5;
    System.out.println(x);
  }
}
0