結果

問題 No.835 ジュース
ユーザー rabirabi
提出日時 2019-06-24 11:55:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 4,006 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2025-01-02 23:46:01
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Tester2 {

	private static final int MAX = 1000000000;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if(1<=n && n<=MAX)
			System.out.println(chk(n));
	}

	static int chk(int n) {
		double a = n*1.5;
		int m = (int)a/1;
		return m;
	}
}
0