#12550: C++ 簡易參考解答


shawn2000100 (東華財金)

學校 : 國立東華大學
編號 : 57300
來源 : [27.53.168.5]
最後登入時間 :
2021-09-19 19:53:19
b836. kevin戀愛攻略系列題-2 說好的霸王花呢?? | From: [124.9.163.61] | 發表日期 : 2017-08-11 11:50

#include <iostream>
using namespace std;

int main() {
long long n, m;
while ( cin >> n >> m ) {

if ( (0 == n && 0 == m) || (n != 1 && n == m) ) {
cout << "No Stop!!" << endl;
continue;
}
if ( 0 == m ) {
cout << "Go Kevin!!" << endl;
continue;
}

for ( int i = 1; n > 0; i += m )
n -= i;
cout << ( 0 == n ? "Go Kevin!!" : "No Stop!!" ) << endl;
}
return 0;
}

 
ZeroJudge Forum