結果

問題 No.244 ★1のグラフの問題
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-17 17:46:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 71,168 KB
実行使用メモリ 56,300 KB
最終ジャッジ日時 2023-09-13 06:23:29
合計ジャッジ時間 4,751 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,588 KB
testcase_01 AC 118 ms
56,196 KB
testcase_02 AC 118 ms
55,584 KB
testcase_03 AC 120 ms
56,080 KB
testcase_04 AC 118 ms
55,892 KB
testcase_05 AC 117 ms
55,700 KB
testcase_06 AC 118 ms
56,300 KB
testcase_07 AC 119 ms
55,696 KB
testcase_08 AC 117 ms
56,228 KB
testcase_09 AC 116 ms
56,076 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