結果

問題 No.111 あばばばば
ユーザー akanayaakanaya
提出日時 2020-03-26 14:47:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,369 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 57,216 KB
最終ジャッジ日時 2024-06-10 12:38:45
合計ジャッジ時間 3,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,080 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 37 ms
57,216 KB
testcase_03 AC 1,369 ms
57,216 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 39 ms
57,216 KB
testcase_06 AC 45 ms
56,960 KB
testcase_07 AC 167 ms
57,216 KB
testcase_08 AC 659 ms
57,216 KB
testcase_09 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())

ans = 0
for i in range(3, l + 1, 2):
    ans += (l - i + 1)

print(ans)
0