제출 #1078341

#제출 시각아이디문제언어결과실행 시간메모리
1078341kilikuma철인 이종 경기 (APIO18_duathlon)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
	ios_base::sync_with_stdio(0):
	cin.tie(0):
	cout.tie(0);

	int n; cin >> n;

	cout << ((n * (n - 1) * (n - 2)) / 6) * 2 << '\n'; 

}

컴파일 시 표준 에러 (stderr) 메시지

count_triplets.cpp: In function 'int main()':
count_triplets.cpp:6:30: error: expected ';' before ':' token
    6 |  ios_base::sync_with_stdio(0):
      |                              ^
      |                              ;