QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#573358#9308. World CupILACHOUCHOUCompile Error//C++17603b2024-09-18 18:21:242024-09-18 18:21:24

Judging History

你现在查看的是最新测评结果

  • [2024-09-18 18:21:24]
  • 评测
  • [2024-09-18 18:21:24]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'

void solve(){ 
    int ch = 0;
	int a[33];
	for(int i = 1;i <= n; i++) cin >> a[i];
	ch = a[1];
	sort(a + 1, a + 33);
	for(int i = 1;i <= 33; i++){
		if(a[i] == ch){
			if(i <= 2) cout << 32 << endl;
			else if(i <= 6) cout << 16 << endl;
			else if(i <= 14) cout << 8 << endl;
			else if(i <= 27) cout << 4 << endl;
			else if(i <= 31) cout << 2 << endl;
			else cout << 1 << endl;
		}
	} 
}
signed main(){
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    return 0;
}

詳細信息

answer.code: In function ‘void solve()’:
answer.code:9:28: error: ‘n’ was not declared in this scope
    9 |         for(int i = 1;i <= n; i++) cin >> a[i];
      |                            ^