結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー Maeda
提出日時 2025-03-26 11:52:49
言語 C
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 261 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2025-03-26 11:52:54
合計ジャッジ時間 4,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 1 RE * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%s",str);
      |         ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void main(void){
	char str[100000] = "a";
	scanf("%s",str);
	int i = 1;
    char selectChar = str[0];
	while(str[i] != '\0'){
		if(selectChar != str[i]){
			printf("%d %c",i+1,str[i]);
			break;
		}
        //selectChar = str[i];
		i++;
	}
}
0