結果

問題 No.244 ★1のグラフの問題
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-17 17:46:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 73,668 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-30 16:34:09
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,384 KB
testcase_01 AC 126 ms
41,348 KB
testcase_02 AC 122 ms
40,228 KB
testcase_03 AC 128 ms
41,264 KB
testcase_04 AC 127 ms
41,380 KB
testcase_05 AC 128 ms
41,472 KB
testcase_06 AC 130 ms
41,000 KB
testcase_07 AC 116 ms
40,964 KB
testcase_08 AC 126 ms
41,512 KB
testcase_09 AC 121 ms
41,212 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