結果

問題 No.57 ミリオンダイス
ユーザー papipenpapipen
提出日時 2017-04-08 20:33:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 72,512 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2023-09-24 23:36:18
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,624 KB
testcase_01 AC 119 ms
56,292 KB
testcase_02 AC 123 ms
55,512 KB
testcase_03 AC 124 ms
55,816 KB
testcase_04 AC 119 ms
56,288 KB
testcase_05 AC 119 ms
55,716 KB
testcase_06 AC 122 ms
56,068 KB
testcase_07 AC 122 ms
56,172 KB
testcase_08 AC 122 ms
55,892 KB
testcase_09 AC 123 ms
55,796 KB
testcase_10 AC 125 ms
55,968 KB
testcase_11 AC 120 ms
55,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N057{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		System.out.println(n * 3.5);
	}
}
0