| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 375166 | div2der | Sifra (COCI21_sifra) | C++14 | 1 ms | 364 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,sse3,sse4,popcnt,abm,mmx")
//#include <bits/stdc++.h>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#include <set>
#include <map>
#include <iomanip>
using namespace std;
const int N = 1e6;
const int inf = 1e9 + 7;
const int mod = 1e9 + 7;
const int INF = 1e9 + 13;
const int NN = 2e3;
#define sz(s) (int)(s.size())
#define all(x) x.begin(), x.end()
#define eb emplace_back
#define ll long long
void init(const string &prob) {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	if (prob != "default") {
		freopen((prob + ".txt").c_str(), "r", stdin);
		freopen((prob + ".txt").c_str(), "w", stdout);
	}
}
void solve() {
	string s;
	cin >> s;
	set <int> st;
	for (int i = 0; i < sz(s); ++ i) {
		if (s[i] - '0' <= 9 and s[i] - '0' >= 0)
			continue;
		else
			s[i] = '_';
	}
	int v = 0;
	bool ok = false;
	for (auto to : s) {
		if (to != '_') {
			ok = true;
			v += (to - '0');
			v *= 10;
		}
		else {
			if (ok) {
				st.insert(v / 10);
				v = 0;
				ok = false;
			}
			else
				continue;
		}
	}
	if (ok)
		st.insert(v / 10);
	cout << sz(st) << '\n';
	return;
}
int main() {
	init("default");
	int tt = 1;
	while (tt--) {
		solve();
	}
	return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
