結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
uudjjs
|
| 提出日時 | 2017-04-24 18:05:34 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 771 ms |
| コンパイル使用メモリ | 27,136 KB |
| 実行使用メモリ | 15,288 KB |
| 最終ジャッジ日時 | 2024-09-13 12:02:46 |
| 合計ジャッジ時間 | 7,164 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 1 -- * 1 |
| other | -- * 8 |
コンパイルメッセージ
main.c: In function 'main':
main.c:9:25: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
9 | printf("%d", array[i] + 1);
| ^~~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf'
+++ |+#include <stdio.h>
1 | int main(void) {
main.c:9:25: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
9 | printf("%d", array[i] + 1);
| ^~~~~~
main.c:9:25: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:8:26: warning: iteration 8 invokes undefined behavior [-Waggressive-loop-optimizations]
8 | if (array[i+1] - array[i] == 2)
| ~~~~~^~~~~
main.c:6:22: note: within this loop
6 | for (i = 0;i <= 8;i++) {
| ~~^~~~
ソースコード
int main(void) {
int array[9] = { 1,2,3,4,6,7,8,9,10 };
int i;
for (i = 0;i <= 8;i++) {
if (array[i+1] - array[i] == 2)
printf("%d", array[i] + 1);
}
while (1);
return 0;
}
uudjjs