結果

問題 No.481 1から10
ユーザー uudjjsuudjjs
提出日時 2017-04-24 18:05:34
言語 C
(gcc 12.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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++) {
      |                    ~~^~~~

ソースコード

diff #

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;
}
0