結果

問題 No.1486 ロボット
ユーザー _matumo__matumo_
提出日時 2021-12-16 08:55:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,928 KB
最終ジャッジ日時 2024-09-13 02:03:42
合計ジャッジ時間 3,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 509 ms
49,928 KB
testcase_07 AC 509 ms
49,836 KB
testcase_08 AC 247 ms
22,084 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 63 ms
13,568 KB
testcase_11 AC 63 ms
13,440 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 157 ms
21,572 KB
testcase_15 AC 56 ms
12,928 KB
testcase_16 AC 97 ms
16,256 KB
testcase_17 AC 80 ms
15,360 KB
testcase_18 AC 94 ms
16,128 KB
testcase_19 AC 47 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A,B,C,D,E=map(int,input().split())
ab=A+B
cd=C+D
L=ab*cd//math.gcd(ab,cd)
p=[0]*(L+1)
for i in range(L):
	p[i+1]=p[i]+(i%ab<A)*(i%cd<C)
n=E//L*p[L]+p[E%L]
print(n)
0