結果
| 問題 |
No.547 未知の言語
|
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-14 13:30:29 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 482 bytes |
| コンパイル時間 | 539 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 7,328 KB |
| 最終ジャッジ日時 | 2025-03-14 13:30:36 |
| 合計ジャッジ時間 | 5,544 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 33 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:22: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
8 | char *str1 = "testtesttesttesttest";
| ^~~~~~~~~~~~~~~~~~~~~~
main.cpp:9:22: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
9 | char *str2 = "testtesttesttesttest";
| ^~~~~~~~~~~~~~~~~~~~~~
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d",&val);
| ~~~~~^~~~~~~~~~~
main.cpp:11:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
11 | scanf("%s%s",str1,str2);
| ~~~~~^~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <string.h>
int main(){
int val = 0;
scanf("%d",&val);
char *str1 = "testtesttesttesttest";
char *str2 = "testtesttesttesttest";
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;
}
}
}
}
sasa