Skip to content

Commit 4f9d53f

Browse files
committed
[Silver III] Title: 정사각형, Time: 0 ms, Memory: 2024 KB -BaekjoonHub
1 parent 3aa72ca commit 4f9d53f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

C++17/백준/Silver/1485. 정사각형/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
### 성능 요약
66

7-
메모리: 2024 KB, 시간: 28 ms
7+
메모리: 2024 KB, 시간: 0 ms
88

99
### 분류
1010

1111
정렬, 기하학
1212

1313
### 제출 일자
1414

15-
2025년 12월 31일 19:53:15
15+
2025년 12월 31일 19:53:46
1616

1717
### 문제 설명
1818

C++17/백준/Silver/1485. 정사각형/정사각형.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ int get_dist(const pii& a, const pii& b) {
1414
}
1515

1616
int main() {
17+
ios::sync_with_stdio(0);
18+
cin.tie(0);
19+
cout.tie(0);
20+
1721
cin >> t;
1822
while (t--) {
1923
array<pii, 4> coords;

0 commit comments

Comments
 (0)