結果

問題 No.111 あばばばば
ユーザー shinshin
提出日時 2022-10-06 08:30:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 98 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2025-01-02 17:07:45
合計ジャッジ時間 19,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
20,352 KB
testcase_01 AC 29 ms
17,064 KB
testcase_02 AC 49 ms
20,224 KB
testcase_03 TLE -
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 98 ms
10,240 KB
testcase_06 AC 475 ms
10,112 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 29 ms
20,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())

k = (L +1) / 2
sum = 0

for i in range(1,int(k)):
  sum += 2 * i - 1

print(sum)
0