結果

問題 No.480 合計
ユーザー gotutiyan
提出日時 2017-09-29 09:03:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 78,472 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-14 09:44:34
合計ジャッジ時間 1,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <fstream>
#include <set>
#include <utility>
#include <algorithm>

using namespace std;

int max(int x, int y) {
	int a;
	(x > y) ? a = x : a = y;
	return a;
}

int min(int x, int y) {
	int a;
	(x < y) ? a = x : a = y;
	return a;
}

int main() {
	int n;
	cin >> n;
	int sum = 0;

	for (int i = 1; i <= n; i++) sum += i;
	cout << sum << endl;
	return 0;
}
0