結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-13 16:03:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 3,000 ms
コード長 325 bytes
コンパイル時間 3,831 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-25 13:15:59
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,980 KB
testcase_01 AC 123 ms
54,168 KB
testcase_02 AC 124 ms
54,228 KB
testcase_03 AC 122 ms
54,088 KB
testcase_04 AC 124 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
     
    public class InputSample {
        public static void main(String[] args) {
            Scanner scan = new Scanner(System.in);
            String str = scan.nextLine();
           int i =Integer.parseInt(str);
            System.out.println(i-i);
            scan.close();
        }
    }
0