結果

問題 No.2117 中国剰余定理入門
ユーザー ygd.ygd.
提出日時 2022-11-06 21:16:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-07-20 08:47:08
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
59,904 KB
testcase_01 AC 54 ms
60,032 KB
testcase_02 AC 53 ms
59,776 KB
testcase_03 AC 54 ms
60,288 KB
testcase_04 AC 53 ms
59,904 KB
testcase_05 AC 296 ms
60,800 KB
testcase_06 AC 53 ms
59,648 KB
testcase_07 AC 303 ms
60,672 KB
testcase_08 AC 233 ms
60,800 KB
testcase_09 AC 54 ms
59,904 KB
testcase_10 AC 53 ms
60,032 KB
testcase_11 AC 54 ms
59,776 KB
testcase_12 AC 204 ms
60,800 KB
testcase_13 AC 55 ms
60,416 KB
testcase_14 AC 203 ms
60,928 KB
testcase_15 AC 55 ms
60,928 KB
testcase_16 AC 55 ms
60,800 KB
testcase_17 AC 56 ms
60,544 KB
testcase_18 AC 199 ms
60,800 KB
testcase_19 AC 53 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
#from collections import deque
import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    b0,c0 = map(int,input().split())
    b1,c1 = map(int,input().split())

    for x in range(10000000):
        if (x-c0)%b0 == 0 and (x-c1)%b1 == 0:
            exit(print(x))
    print('NaN')



if __name__ == '__main__':
    main()
0