結果

問題 No.244 ★1のグラフの問題
ユーザー kusagame12kusagame12
提出日時 2023-11-09 15:17:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-09-26 00:20:59
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,140 KB
testcase_01 AC 106 ms
40,160 KB
testcase_02 AC 120 ms
41,068 KB
testcase_03 AC 121 ms
40,984 KB
testcase_04 AC 118 ms
41,344 KB
testcase_05 AC 122 ms
41,040 KB
testcase_06 AC 121 ms
41,096 KB
testcase_07 AC 123 ms
41,340 KB
testcase_08 AC 121 ms
40,988 KB
testcase_09 AC 105 ms
39,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {

        Scanner sc = new Scanner(System.in);

        System.out.println(sc.nextInt() - 1);
    }
}
0