結果

問題 No.2508 Discriminant
ユーザー unibopunibop
提出日時 2023-10-21 11:46:36
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 1,189 ms
コンパイル使用メモリ 107,312 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 13:03:26
合計ジャッジ時間 2,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <deque>
#include <set>
#include <map>
#include <bitset>
#include <ctype.h>
#include <numeric>

using namespace std;
using ll = long long;

int main() {
	string a, p, q;
	cin >> a >> p >> q;
	if(p == q) cout << "No" << endl;
	else cout << "Yes" << endl;
}
0