結果
| 問題 |
No.796 well known
|
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-09-04 09:47:43 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 249 bytes |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 29,696 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 01:24:43 |
| 合計ジャッジ時間 | 1,344 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
int num;
scanf("%d",&num);
printf("1 ");
for(int i=0;i<num-2;i++)
{
printf("3 ");
}
printf("3");
}
funakoshi