Submission #1089931

#TimeUsernameProblemLanguageResultExecution timeMemory
1089931solitaryManRoom Temperature (JOI24_ho_t1)C++17
5 / 100
2 ms348 KiB
#include <bits/stdc++.h> using namespace std; #define endl "\n" #define ll long long #define line cout << "---------------------------" << endl; #define M -1 #define debug(x) cout << "x " << x << endl; #define all(a) a.begin(), a.end() #define INF (int) 1e9 bool sq(int n){ return n * n; } void solve(){ int n,t; cin >> n >> t; if(t == 1){ cout << 0 << endl; return; } vector<int> v(n); bool flg = 0; for(int i = 0; i < n; i++){ cin >> v[i]; v[i] %= 2; } cout << *min_element(begin(v),end(v)) << endl; } int32_t main(){ int t = 1; //cin >> t; while(t--){solve();} cerr << "Execution time: " << 1000.f * clock() / CLOCKS_PER_SEC << " ms." << endl; }

Compilation message (stderr)

Main.cpp: In function 'bool sq(int)':
Main.cpp:14:11: warning: '*' in boolean context, suggest '&&' instead [-Wint-in-bool-context]
   14 |  return n * n;
      |         ~~^~~
Main.cpp: In function 'void solve()':
Main.cpp:23:7: warning: unused variable 'flg' [-Wunused-variable]
   23 |  bool flg = 0;
      |       ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...