結果

問題 No.57 ミリオンダイス
ユーザー itezpaceitezpace
提出日時 2016-08-21 12:27:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-04-26 16:53:45
合計ジャッジ時間 4,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,456 KB
testcase_01 AC 126 ms
41,600 KB
testcase_02 AC 131 ms
41,336 KB
testcase_03 AC 127 ms
41,440 KB
testcase_04 AC 128 ms
41,440 KB
testcase_05 AC 127 ms
41,676 KB
testcase_06 AC 120 ms
41,436 KB
testcase_07 AC 131 ms
41,752 KB
testcase_08 AC 117 ms
41,024 KB
testcase_09 AC 134 ms
41,808 KB
testcase_10 AC 133 ms
41,688 KB
testcase_11 AC 131 ms
41,840 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