結果

問題 No.604 誕生日のお小遣い
ユーザー exteloextelo
提出日時 2017-12-08 14:24:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 434 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 65,164 KB
最終ジャッジ日時 2025-01-05 04:58:20
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 1 ms
10,020 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 TLE -
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
10,020 KB
testcase_06 AC 2 ms
13,632 KB
testcase_07 AC 1 ms
10,148 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 1 ms
10,020 KB
testcase_10 AC 1 ms
13,632 KB
testcase_11 AC 238 ms
6,816 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2 ms
6,820 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 76 ms
6,820 KB
testcase_22 AC 150 ms
6,820 KB
testcase_23 AC 222 ms
10,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   scanf("%lld %lld %lld", &a, &b, &c);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>

class Yuki
{
public:
  long long int old;
  long long int sum;

};

int main(void)
{
  long long int a, b, c; 

  scanf("%lld %lld %lld", &a, &b, &c);

  
  Yuki yuki;
  yuki.sum=0;
  yuki.old = 1;

  while(1)
  {
    
    if(yuki.old % a != 0){
      yuki.sum++;
    } else {
      yuki.sum += b;
    }

    if(yuki.sum >= c){
      break;
    } 
    yuki.old++;
  }

  printf("%lld\n", yuki.old);

  return 0;
}
0