結果

問題 No.1636 森
ユーザー titan23titan23
提出日時 2022-06-29 11:37:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-11-22 11:11:15
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n = int(input())
print((n-1) * (n-1))
0