結果
問題 | No.894 二種類のバス |
ユーザー |
![]() |
提出日時 | 2020-01-27 00:24:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-14 11:36:04 |
合計ジャッジ時間 | 1,816 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines from math import gcd T,A,B = map(int,read().split()) L = A*B//gcd(A,B) T -= 1 answer = (T//A) + (T//B) - (T//L) + 1 print(answer)