結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
fusilbayonet
|
| 提出日時 | 2019-05-30 00:52:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 171 bytes |
| コンパイル時間 | 138 ms |
| コンパイル使用メモリ | 31,104 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-17 16:03:45 |
| 合計ジャッジ時間 | 745 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 22 |
ソースコード
#include<cstdio>
int main(void)
{
int N, ans;
scanf("%d", &N);
ans = 0;
for(int i=0; i<N; i++)
{
ans += i;
}
printf("%d", ans);
}
fusilbayonet