結果
| 問題 | No.1114 足し算盆に返らず |
| コンテスト | |
| ユーザー |
tsuishi
|
| 提出日時 | 2021-04-09 15:00:04 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 166 bytes |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 27,776 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-24 21:50:05 |
| 合計ジャッジ時間 | 15,390 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 26 |
ソースコード
#include <stdio.h>
int main( void ) {
int m;
char s;
scanf("%d", &m );
for(int i=1; i <= m ; i+=2 ) {
printf("%c%d",s,i);
s = ' ';
}
printf("\n");
}
tsuishi