結果

問題 No.1033 乱数サイ
ユーザー ks2mks2m
提出日時 2020-04-24 21:21:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-04-23 02:47:40
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,300 KB
testcase_01 AC 130 ms
41,340 KB
testcase_02 AC 119 ms
41,632 KB
testcase_03 AC 121 ms
41,060 KB
testcase_04 AC 126 ms
41,856 KB
testcase_05 AC 134 ms
41,292 KB
testcase_06 AC 129 ms
41,504 KB
testcase_07 AC 126 ms
41,628 KB
testcase_08 AC 129 ms
41,836 KB
testcase_09 AC 115 ms
40,228 KB
testcase_10 AC 122 ms
41,524 KB
testcase_11 AC 108 ms
41,432 KB
testcase_12 AC 122 ms
41,464 KB
testcase_13 AC 108 ms
40,056 KB
testcase_14 AC 117 ms
41,164 KB
testcase_15 AC 121 ms
41,448 KB
testcase_16 AC 118 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		System.out.println(n / 2.0);
	}
}
0