結果

問題 No.244 ★1のグラフの問題
ユーザー tentententen
提出日時 2020-11-11 09:00:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 75,488 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-22 18:19:13
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,220 KB
testcase_01 AC 112 ms
54,120 KB
testcase_02 AC 114 ms
53,908 KB
testcase_03 AC 102 ms
53,048 KB
testcase_04 AC 112 ms
53,752 KB
testcase_05 AC 115 ms
53,968 KB
testcase_06 AC 103 ms
53,172 KB
testcase_07 AC 115 ms
54,176 KB
testcase_08 AC 121 ms
53,876 KB
testcase_09 AC 114 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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