結果

問題 No.57 ミリオンダイス
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-03 12:38:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-04-26 16:51:11
合計ジャッジ時間 5,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,184 KB
testcase_01 AC 125 ms
41,484 KB
testcase_02 AC 124 ms
41,440 KB
testcase_03 AC 116 ms
40,092 KB
testcase_04 AC 114 ms
40,068 KB
testcase_05 AC 128 ms
41,028 KB
testcase_06 AC 128 ms
41,108 KB
testcase_07 AC 132 ms
41,172 KB
testcase_08 AC 132 ms
41,144 KB
testcase_09 AC 129 ms
41,020 KB
testcase_10 AC 127 ms
41,328 KB
testcase_11 AC 129 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki57 {
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		scan.close();
		System.out.println( 3.5 * n );
	
	}
}
0