結果

問題 No.1636 森
ユーザー kept1994kept1994
提出日時 2021-08-25 01:24:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 53,228 KB
最終ジャッジ日時 2024-04-27 13:46:37
合計ジャッジ時間 1,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,964 KB
testcase_01 AC 32 ms
52,804 KB
testcase_02 AC 32 ms
52,260 KB
testcase_03 AC 32 ms
53,084 KB
testcase_04 AC 33 ms
51,944 KB
testcase_05 AC 33 ms
53,228 KB
testcase_06 AC 32 ms
52,908 KB
testcase_07 AC 32 ms
51,904 KB
testcase_08 AC 33 ms
52,652 KB
testcase_09 AC 32 ms
52,152 KB
testcase_10 AC 32 ms
52,516 KB
testcase_11 AC 34 ms
52,432 KB
testcase_12 AC 33 ms
52,688 KB
testcase_13 AC 32 ms
52,816 KB
testcase_14 AC 33 ms
52,644 KB
testcase_15 AC 32 ms
52,392 KB
testcase_16 AC 33 ms
52,100 KB
testcase_17 AC 32 ms
52,484 KB
testcase_18 AC 33 ms
53,012 KB
testcase_19 AC 34 ms
51,916 KB
testcase_20 AC 33 ms
52,448 KB
testcase_21 AC 31 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    print((N - 1) ** 2)

if __name__ == '__main__':
    main()
0