我剛剛將解決方案發送給用C++編寫的COJ問題。問題是這樣的鏈接:http://coj.uci.cu/24h/problem.xhtml?pid=1839
這是我的解決方案:C++ Online Judge中超出的時間限制
#include<iostream>
using namespace std;
unsigned int t, n;
int main(){
cin >> t;
while(t > 0 && cin >> n){
cout<< (n * 8) + 42 << endl;
t--;
}
return 0;
}
對此COJ的法官網上說:「時間超出限制」。有人能解釋爲什麼嗎?
你的代碼試圖做什麼?問題必須自成體系! – Deduplicator
「超時限」爲什麼?由於您的程序超出了運行解決方案的時間限制? – sehe
我投票結束這個題目,因爲它是關於一個持續的在線挑戰 – sehe