結果

問題 No.415 ぴょん
ユーザー AREIDO2AREIDO2
提出日時 2017-01-07 16:43:06
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 330 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 54,952 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-12-17 16:20:16
合計ジャッジ時間 16,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 2 ms
9,892 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 TLE -
testcase_24 AC 679 ms
6,816 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

int main(){
  int N,D,N2=0,D2=0,x;
  std::cin >> N >> D;
  N2 = N;
  D2 = D;
  while(1){
    while(N2 != D2){
      if(N2 < D2){
        break;
      }
      D2 = D2 + D;

    }
    if(N2 == D2){
      x = (N2 / D) - 1;
      break;
    }
    else{
      N2 = N2 + N;
    }
  }
  std::cout << x;
  return 0;
}
0