結果
| 問題 |
No.796 well known
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-15 23:29:44 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 223 bytes |
| コンパイル時間 | 111 ms |
| コンパイル使用メモリ | 22,656 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 21:43:50 |
| 合計ジャッジ時間 | 1,110 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d", &N );
| ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio>
int main(){
int N;
scanf("%d", &N );
printf( "1 " );
for( int i = 1; i < N; i++ ){
printf( "3" );
printf( i == N-1 ? "\n" : " " );
}
return 0;
}