結果

問題 No.1636 森
ユーザー Subaru314Subaru314
提出日時 2022-01-08 19:58:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 3,177 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-04-26 19:29:00
合計ジャッジ時間 6,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,936 KB
testcase_01 AC 124 ms
53,880 KB
testcase_02 AC 118 ms
53,848 KB
testcase_03 AC 123 ms
53,836 KB
testcase_04 AC 126 ms
54,008 KB
testcase_05 AC 110 ms
52,876 KB
testcase_06 AC 114 ms
53,804 KB
testcase_07 AC 112 ms
53,324 KB
testcase_08 AC 125 ms
53,980 KB
testcase_09 AC 123 ms
54,068 KB
testcase_10 AC 128 ms
53,920 KB
testcase_11 AC 125 ms
53,896 KB
testcase_12 AC 122 ms
54,084 KB
testcase_13 AC 122 ms
53,820 KB
testcase_14 AC 109 ms
52,872 KB
testcase_15 AC 117 ms
54,108 KB
testcase_16 AC 122 ms
54,300 KB
testcase_17 AC 122 ms
53,820 KB
testcase_18 AC 125 ms
54,008 KB
testcase_19 AC 122 ms
54,312 KB
testcase_20 AC 126 ms
53,996 KB
testcase_21 AC 134 ms
54,044 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)*(n-1));
    
  }

}
0