#41746: 醬子優化


s210367@student.cysh.cy.edu.tw (張少謙)

學校 : 國立嘉義高級中學
編號 : 263937
來源 : [36.232.75.251]
最後登入時間 :
2024-10-17 23:24:29
b594. A Marvelous Pet | From: [36.232.120.62] | 發表日期 : 2024-08-22 21:12

io加速很好用

// ios_base::sync_with_stdio(false);
// cin.tie(NULL);

 

z03196ru.4d042k72l4xk7


#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int x;
  while (cin >> x && x != 0) {
      int a = 0;
      for (int i = 1; i * (i + 1) / 2 < x; i++) {
          if ((x - i * (i + 1) / 2) % (i + 1) == 0) {
              a++;
          }
      }
      cout << a << endl;
  }
  return 0;
}

 

 
ZeroJudge Forum