結果

問題 No.415 ぴょん
ユーザー AREIDO2AREIDO2
提出日時 2016-08-29 14:41:54
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 210 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 20,168 KB
最終ジャッジ日時 2024-11-14 06:45:42
合計ジャッジ時間 21,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#!/usr/bin/env python
#coding:UTF-8

N,D = map(long,raw_input().split())
x = 0
sw = 0
count = 0

while sw == 0:
     x = (x + D) % N
     if x != 0:
          count += 1
     else:
          sw = 1

print count
0