結果
| 問題 |
No.1468 Colourful Pastel
|
| ユーザー |
|
| 提出日時 | 2021-04-04 15:28:05 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 203 bytes |
| コンパイル時間 | 2,017 ms |
| コンパイル使用メモリ | 167,212 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2024-12-27 22:48:48 |
| 合計ジャッジ時間 | 3,391 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 22 WA * 3 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){int N;cin>>N;string S[N];for(int i=0;i<N;i++)cin>>S[i];string T;int j=0;for(int i=0;i<N-1;i++){cin>>T;if(S[j]!=T){cout<<S[j];return 0;}else{j++;}}}