結果
| 問題 | No.547 未知の言語 |
| コンテスト | |
| ユーザー |
hoge
|
| 提出日時 | 2017-07-30 09:18:10 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 937 ms |
| コンパイル使用メモリ | 175,088 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-12 14:54:52 |
| 合計ジャッジ時間 | 1,724 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
for(int i=0;i<n;i++) {
string s,t;
cin>>s>>t;
if(s!=t) {
cout<<i+1<<endl;
cout<<s<<endl;
cout<<t<<endl;
return 0;
}
}
return 0;
}
hoge