結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-02-12 00:58:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 629 ms |
| コンパイル使用メモリ | 20,544 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2026-06-30 04:41:45 |
| 合計ジャッジ時間 | 3,753 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
import sys
def input():
return sys.stdin.readline()[:-1]
"""
list(map(int,input().split()))
"""
def Main():
n=int(input())
print(n*(1+n)//2)
Main()