結果

問題 No.547 未知の言語
ユーザー sasa
提出日時 2025-03-14 13:30:59
言語 C
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 450 bytes
コンパイル時間 1,142 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2025-03-14 13:31:07
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&val);
      |         ^~~~~~~~~~~~~~~~
main.c:11:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |                 scanf("%s%s",str1,str2);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main(){
	int val = 0;
	scanf("%d",&val);
	
	char *str1 = "test";
	char *str2 = "test";
	for(int i = 0;i < val;i ++){
		scanf("%s%s",str1,str2);
		int len = 0;
		int len1 = strlen(str1);
		int len2 = strlen(str2);
		if(len1 > len2){
			len = len1;
		}else{
			len = len2;
		}
		for(int j = 0;j < len;j ++){
			if(str1[j] != str2[j]){
				printf("%d\n%s\n%s\n",i + 1,str1,str2);
				return 0;
			}
		}
	}
	
}
0