Submission #202584

#TimeUsernameProblemLanguageResultExecution timeMemory
202584detaomegaSob (COCI19_sob)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define X first #define Y second #define rep(i,a,b) for(int i=a;i<=b;i++) #define IOS ios::sync_with_stdio(0);cin.tie(0); #define de(x,y) cout<<#x<<" :"<<x<<y; #define int long long #define SZ(xx) ((int)xx.size()) #define lowbit(xx) (xx&(-xx)) #define pb push_back typedef pair<int,int> pii; const int maxn = 4e5+5; main() { IOSjavascript:tab_clicked(1) int n, m; cin >> n >> m; for(int i=0; i<n; i++) { for(int j=m; j<m+n; j++) { if((i and j) == i) { cout << i << " " << j << "\n"; break; } } } }

Compilation message (stderr)

sob.cpp:18:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
sob.cpp: In function 'int main()':
sob.cpp:19:16: error: 'tab_clicked' was not declared in this scope
  IOSjavascript:tab_clicked(1)
                ^~~~~~~~~~~
sob.cpp:21:9: error: 'n' was not declared in this scope
  cin >> n >> m;
         ^
sob.cpp:21:9: note: suggested alternative: 'yn'
  cin >> n >> m;
         ^
         yn
sob.cpp:21:14: error: 'm' was not declared in this scope
  cin >> n >> m;
              ^
sob.cpp:21:14: note: suggested alternative: 'tm'
  cin >> n >> m;
              ^
              tm
sob.cpp:19:2: warning: label 'IOSjavascript' defined but not used [-Wunused-label]
  IOSjavascript:tab_clicked(1)
  ^~~~~~~~~~~~~