結果
問題 | No.2038 Strange Arrange |
ユーザー | 👑 ygussany |
提出日時 | 2022-08-12 21:58:03 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 460 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:15:58 |
合計ジャッジ時間 | 632 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:11:30: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 11 | if (j == 10) exit(0); | ^~~~ main.c:2:1: note: include '<stdlib.h>' or provide a declaration of 'exit' 1 | #include <stdio.h> +++ |+#include <stdlib.h> 2 | main.c:11:30: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 11 | if (j == 10) exit(0); | ^~~~ main.c:11:30: note: include '<stdlib.h>' or provide a declaration of 'exit'
ソースコード
#include <stdio.h> int main() { int N; scanf("%d", &N); int i, j, k, ans[503], flag[503][10] = {}; for (i = 1; i <= N; i++) { for (j = 1; j <= 9; j++) if (flag[i][j] == 0) break; if (j == 10) exit(0); ans[i] = j; flag[i+1][j] = 1; for (j = 1; j < i && i + j <= N; j++) { if (ans[j] == ans[i]) for (k = 1; k <= ans[i]; k++) flag[i+j][k] = 1; } } for (i = 1; i <= N; i++) printf("%d", ans[i]); printf("\n"); fflush(stdout); return 0; }