結果

問題 No.57 ミリオンダイス
ユーザー fukuseifukusei
提出日時 2017-05-20 23:13:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-09-19 00:32:08
合計ジャッジ時間 4,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,288 KB
testcase_01 WA -
testcase_02 AC 101 ms
41,492 KB
testcase_03 AC 101 ms
41,284 KB
testcase_04 AC 109 ms
41,404 KB
testcase_05 AC 96 ms
41,500 KB
testcase_06 AC 114 ms
41,280 KB
testcase_07 AC 101 ms
41,312 KB
testcase_08 AC 99 ms
41,204 KB
testcase_09 AC 117 ms
41,196 KB
testcase_10 AC 111 ms
41,328 KB
testcase_11 AC 100 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

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