Recent Posts
Notice
No Rules Rules
알고리즘 수업 - 알고리즘의 수행 시간 3 (feat. 백준, 24264번) 본문
728x90
반응형
알고리즘 수업 - 알고리즘의 수행 시간 3
https://www.acmicpc.net/problem/24264
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register unsigned long long N;
cin >> N;
cout << (N * N) << "\n2";
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
알고리즘 수업 - 알고리즘의 수행 시간 6 (feat. 백준, 24267번) (0) | 2023.02.28 |
---|---|
색종이 - 2 (feat. 백준, 2567번) (0) | 2023.02.27 |
스네이크 (feat. 백준, 27512번) (0) | 2023.02.27 |
카트라이더: 드리프트 (feat. 백준, 27522번) (0) | 2023.02.27 |
최솟값 찾기 (feat. 백준, 11003번) (0) | 2023.02.24 |
Comments