結果

問題 No.57 ミリオンダイス
ユーザー リチウムリチウム
提出日時 2014-11-04 23:22:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 191 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 71,664 KB
実行使用メモリ 56,200 KB
最終ジャッジ日時 2023-08-08 17:34:22
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,860 KB
testcase_01 AC 120 ms
56,140 KB
testcase_02 AC 117 ms
56,068 KB
testcase_03 AC 118 ms
56,104 KB
testcase_04 AC 116 ms
56,168 KB
testcase_05 AC 119 ms
55,924 KB
testcase_06 AC 118 ms
55,836 KB
testcase_07 AC 118 ms
55,936 KB
testcase_08 AC 118 ms
56,200 KB
testcase_09 AC 118 ms
56,024 KB
testcase_10 AC 116 ms
55,644 KB
testcase_11 AC 117 ms
56,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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