結果

問題 No.57 ミリオンダイス
ユーザー scachescache
提出日時 2014-12-01 14:25:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 3,419 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-11-09 00:39:31
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main57 {
	public static void main(String[] args) {
		Main57 p = new Main57();
	}

	public Main57() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		System.out.println(n*3.5);
		
	}

	public void solve() {
	}

}
0