結果

問題 No.3155 Same Birthday
ユーザー 北杜七星
提出日時 2025-05-23 19:02:14
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 3,570 ms
コンパイル使用メモリ 278,916 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2025-05-23 19:03:10
合計ジャッジ時間 11,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define all(a) (a).begin(), (a).end()
using ll = long long;
const ll INF32 = 2e9;
const ll INF64 = 4e18;

void printYN(bool ok){
    if(ok)cout << "Yes" << endl;
    else cout << "No" << endl;
    return;
}

int main() {
    int N;
    cin >> N;
    set<pair<int, int>> st;
    bool ok = false;
    rep(i, N){
        int a, b;
        cin >> a >> b;
        if(st.count({a, b}))ok = true;
        st.insert({a,b});
    }
    printYN(ok);
    return 0;
}
0