結果

問題 No.835 ジュース
ユーザー rabirabi
提出日時 2019-06-24 11:55:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-06-10 23:05:18
合計ジャッジ時間 5,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,596 KB
testcase_01 AC 130 ms
41,316 KB
testcase_02 AC 132 ms
41,520 KB
testcase_03 AC 129 ms
41,432 KB
testcase_04 AC 129 ms
41,560 KB
testcase_05 AC 127 ms
41,660 KB
testcase_06 AC 126 ms
41,556 KB
testcase_07 AC 125 ms
41,132 KB
testcase_08 AC 126 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

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