0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 18:52:02 +00:00

P4325 [COCI2006-2007#1] Modulo

R39846673
This commit is contained in:
Baoshuo Ren 2020-10-15 17:27:45 +08:00 committed by Baoshuo Ren
parent 59b8809c28
commit 9d229621dc
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
problem/P4325/P4325.cpp Normal file
View File

@ -0,0 +1,14 @@
#include<bits/stdc++.h>
using namespace std;
int main() {
int t;
set<int> s;
for(int i = 0 ; i < 10 ; i++) {
cin >> t;
s.insert(t%42);
}
cout << s.size() << endl;
return 0;
}