結果

問題 No.835 ジュース
ユーザー heyanxxheyanxx
提出日時 2019-07-03 14:40:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 73,188 KB
実行使用メモリ 36,940 KB
最終ジャッジ日時 2024-09-15 06:32:53
合計ジャッジ時間 4,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,488 KB
testcase_01 AC 51 ms
36,488 KB
testcase_02 AC 51 ms
36,580 KB
testcase_03 AC 52 ms
36,940 KB
testcase_04 AC 52 ms
36,624 KB
testcase_05 AC 52 ms
36,712 KB
testcase_06 AC 52 ms
36,684 KB
testcase_07 AC 52 ms
36,836 KB
testcase_08 AC 52 ms
36,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Yukicoder835 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		BufferedReader bf =new BufferedReader(new InputStreamReader(System.in));
		
		try {
			String str=bf.readLine();
			int a=Integer.parseInt(str);
			int b=(int) (1.5*a/1);
			System.out.println(b);
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}

	}

}
0