結果
問題 | No.111 あばばばば |
ユーザー | akitsugu777 |
提出日時 | 2018-11-06 15:57:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 134 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 20,992 KB |
最終ジャッジ日時 | 2024-11-20 20:28:15 |
合計ジャッジ時間 | 19,974 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
20,992 KB |
testcase_01 | AC | 29 ms
20,864 KB |
testcase_02 | AC | 65 ms
10,496 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 137 ms
10,496 KB |
testcase_06 | AC | 701 ms
10,496 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 30 ms
20,864 KB |
ソースコード
n = int(input()) a = (n + 1)//2 x = 0 for i in range(a): x += i b = (n - 1)//2 y = 0 for i in range(b): y += i print(x + y)