#28534:


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
b367. 翻轉世界 -- 自己 | From: [219.85.41.201] | 發表日期 : 2021-12-15 23:58

#include <iostream>
using namespace std;

int main() {
ios::sync_with_stdio(0);
  cin.tie(0);
int t, n, m;
cin >> t;
while (t--){
cin >> n >> m;
int a[144];
int len=m*n;
for (int i=0; i<len; i++){
cin >> a[i];
}
bool go=true;
for (int i=0; i<=len/2; i++){
if (a[i]!=a[len-1-i]){
go=false;
break;
}
}
if (go){
cout <<"go forward"<<endl;
}
else {
cout <<"keep defending"<<endl;
}
}
}
 
ZeroJudge Forum