結果

問題 No.894 二種類のバス
ユーザー Shuz*Shuz*
提出日時 2019-09-27 22:34:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,524 KB
最終ジャッジ日時 2024-09-24 23:20:59
合計ジャッジ時間 13,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 497 ms
44,156 KB
testcase_02 AC 501 ms
44,020 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 502 ms
44,200 KB
testcase_07 AC 499 ms
43,900 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 505 ms
44,404 KB
testcase_11 AC 499 ms
44,160 KB
testcase_12 AC 495 ms
43,876 KB
testcase_13 AC 499 ms
44,156 KB
testcase_14 AC 500 ms
44,008 KB
testcase_15 AC 502 ms
44,024 KB
testcase_16 AC 503 ms
44,292 KB
testcase_17 AC 494 ms
44,152 KB
testcase_18 AC 500 ms
43,904 KB
testcase_19 AC 499 ms
44,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
T, A, B = map(int, input().split())
T -= 1
print(T // A + T // B - T // np.lcm(A, B) + 1)
0