結果

問題 No.244 ★1のグラフの問題
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2020-12-31 15:00:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 3,769 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-10-09 14:36:25
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,264 KB
testcase_01 AC 130 ms
41,564 KB
testcase_02 AC 129 ms
41,444 KB
testcase_03 AC 129 ms
41,580 KB
testcase_04 AC 130 ms
41,208 KB
testcase_05 AC 128 ms
41,180 KB
testcase_06 AC 130 ms
41,740 KB
testcase_07 AC 131 ms
41,580 KB
testcase_08 AC 114 ms
40,348 KB
testcase_09 AC 129 ms
41,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/244
public class onesGraph244 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int s1 = Integer.parseInt(sc.next());
    int result = s1 - 1;
    // 標準出力に書き出す。
    System.out.println(result);
  }
}
0