結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-13 16:03:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 3,000 ms
コード長 325 bytes
コンパイル時間 4,938 ms
コンパイル使用メモリ 72,020 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2023-09-07 19:29:19
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
56,000 KB
testcase_01 AC 114 ms
55,916 KB
testcase_02 AC 119 ms
56,040 KB
testcase_03 AC 111 ms
56,148 KB
testcase_04 AC 113 ms
56,108 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