結果
問題 | No.415 ぴょん |
ユーザー |
|
提出日時 | 2018-08-14 04:48:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 1,000 ms |
コード長 | 256 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-18 15:00:16 |
合計ジャッジ時間 | 1,561 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
from math import gcdfrom sys import stdin, stdoutinput = lambda: stdin.readline().rstrip()write = stdout.writelcm = lambda x, y: x * y // gcd(x, y)def main():N, D = map(int, input().split())ans = lcm(N, D) // D - 1print(ans)main()