結果

問題 No.480 合計
ユーザー Eimii
提出日時 2018-04-15 07:24:24
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 22:46:11
合計ジャッジ時間 1,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include "stdio.h"
#include "cstdlib"

int main() {
	int N;
	int buff = 0;

	scanf("%d",&N);

	while(N != 0){
		buff += N;
		N--;
	}

	return 0;
}
0