結果

問題 No.111 あばばばば
ユーザー akanayaakanaya
提出日時 2020-03-26 14:47:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,568 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 59,412 KB
最終ジャッジ日時 2025-01-02 01:47:56
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,404 KB
testcase_01 AC 38 ms
52,452 KB
testcase_02 AC 42 ms
57,716 KB
testcase_03 AC 1,568 ms
59,360 KB
testcase_04 AC 37 ms
51,904 KB
testcase_05 AC 40 ms
59,128 KB
testcase_06 AC 46 ms
59,412 KB
testcase_07 AC 192 ms
58,484 KB
testcase_08 AC 757 ms
58,628 KB
testcase_09 AC 38 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())

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

print(ans)
0