#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
const int mod = 101;
int get(int c, int p) {
return (c * p) % mod;
}
int main() {
//int num[12] = { 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 12 , 34 };
int num[12] = { 34 , 2 , 12 , 4 , 8 , 6 , 7 , 5 , 9 , 10 , 3 , 1 };
for (int i = 0; i < 12; ++i)
cout << num[i] << " ";
//vector<int> mx;
//for (int i = 1; i <= 100; ++i) {
// vector<int> tmp;
// int delay = 0;
// for (int j = 0; j < 12; ++j) {
// int add = get(i, num[j]);
// delay += add;
// tmp.push_back(add);
// }
// int idx = max_element(tmp.begin(), tmp.end()) - tmp.begin();
// mx.push_back(tmp[idx]);
// cout << delay << '\n';
//}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
0 KB |
Expected integer, but "#include" found |