結果

問題 No.815 Are you a traveller ?
ユーザー planetWorldYplanetWorldY
提出日時 2020-03-01 18:10:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2024-10-13 20:46:06
合計ジャッジ時間 3,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,380 KB
testcase_01 WA -
testcase_02 AC 112 ms
41,100 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 118 ms
40,340 KB
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int number = sc.nextInt();
        
        System.out.println(number / 2);
    }
}
0