結果

問題 No.244 ★1のグラフの問題
ユーザー ABKZABKZ
提出日時 2021-06-16 11:14:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 53,476 KB
最終ジャッジ日時 2024-12-30 01:37:40
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,972 KB
testcase_01 AC 48 ms
52,564 KB
testcase_02 AC 41 ms
52,200 KB
testcase_03 AC 43 ms
52,472 KB
testcase_04 AC 42 ms
53,476 KB
testcase_05 AC 42 ms
52,620 KB
testcase_06 AC 41 ms
53,164 KB
testcase_07 AC 40 ms
51,992 KB
testcase_08 AC 41 ms
52,188 KB
testcase_09 AC 42 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

# N = 2 の時必要な辺の本数は1。
# N を +1 したとき、1本増やすだけでよい。
# 帰納法できちんと証明できる……はず。
print(N - 1)
0