結果

問題 No.1252 数字根D
ユーザー maspymaspy
提出日時 2020-09-07 14:23:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 64,676 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-05-06 23:45:44
合計ジャッジ時間 4,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,884 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 376 ms
6,812 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 愚直解法
// WA がなくて TLE になることを期待している

#include<iostream>
using namespace std;
using ll = long long;

ll f(ll D, ll x){
  if(x==0){
    return 0;
  }
  x %= (D-1);
  if(x == 0){
    x = D-1;
  }
  return x;
}

int main(){
  ll T, D, A, B;
  cin >> T;
  for(int i=0;i<T;i++){
    cin >> D >> A >> B;
    ll ans = 0;
    for(ll x=A;x<=B;x++){
      ans += f(D, x);
    }
    cout << ans << endl;
  }
  return 0;
}
0