結果

問題 No.244 ★1のグラフの問題
ユーザー darknightdarknight
提出日時 2016-10-15 20:03:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-04-15 03:19:22
合計ジャッジ時間 3,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,904 KB
testcase_01 AC 114 ms
54,060 KB
testcase_02 AC 117 ms
54,156 KB
testcase_03 AC 114 ms
54,180 KB
testcase_04 AC 113 ms
53,900 KB
testcase_05 AC 114 ms
54,020 KB
testcase_06 AC 117 ms
53,736 KB
testcase_07 AC 116 ms
54,024 KB
testcase_08 AC 120 ms
53,804 KB
testcase_09 AC 120 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
		Scanner sc  = new Scanner(System.in);

        int s = Integer.parseInt(sc.next());

        System.out.print( s-1 );
        System.out.println();
	}
}
0