From e11a186db04c9d489af164ef515f35def92106a9 Mon Sep 17 00:00:00 2001 From: belowyoon <92996412+belowyoon@users.noreply.github.com> Date: Sun, 28 Apr 2024 00:48:17 +0900 Subject: [PATCH] =?UTF-8?q?[Gold=20III]=20Title:=20=EC=95=B1,=20Time:=204?= =?UTF-8?q?=20ms,=20Memory:=206092=20KB=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Gold/7579.\342\200\205\354\225\261/README.md" | 2 +- .../Gold/7579.\342\200\205\354\225\261/\354\225\261.cc" | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git "a/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/README.md" "b/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/README.md" index 27d1310..9e88365 100644 --- "a/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/README.md" +++ "b/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/README.md" @@ -12,7 +12,7 @@ ### 제출 일자 -2024년 4월 27일 23:08:04 +2024년 4월 28일 00:48:05 ### 문제 설명 diff --git "a/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/\354\225\261.cc" "b/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/\354\225\261.cc" index 6e0a84a..983cc99 100644 --- "a/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/\354\225\261.cc" +++ "b/\353\260\261\354\244\200/Gold/7579.\342\200\205\354\225\261/\354\225\261.cc" @@ -4,11 +4,6 @@ using namespace std; -bool compare(pair a, pair b) { - if (a.first == b.first) return a.second > b.second; - return a.first < b.first; -} - int main() { ios_base::sync_with_stdio(0); cin.tie(0);