結果
問題 | No.480 合計 |
ユーザー |
|
提出日時 | 2017-11-18 01:03:41 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 223 bytes |
コンパイル時間 | 347 ms |
コンパイル使用メモリ | 53,808 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 08:55:42 |
合計ジャッジ時間 | 961 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 22 |
ソースコード
# include <iostream>using namespace std;int main() {int input_num, sum=0, i;cin >> input_num;for (i=0; i<=input_num; i++){sum += input_num;}cout << sum << endl;return 0;}