結果
問題 |
No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
|
ユーザー |
|
提出日時 | 2022-12-15 18:11:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 248 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 08:46:05 |
合計ジャッジ時間 | 3,092 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | WA * 15 |
ソースコード
#include <stdio.h> int main () { long int n; scanf("%d", &n); int i; for(i=2; i<=n; i++) { printf("%d", n); int goukei; goukei = 0; goukei = goukei + n; printf("%d", goukei); } }