結果
| 問題 |
No.1486 ロボット
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-11 16:44:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 353 ms / 2,000 ms |
| コード長 | 210 bytes |
| コンパイル時間 | 300 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 21,508 KB |
| 最終ジャッジ日時 | 2024-09-25 03:25:56 |
| 合計ジャッジ時間 | 3,728 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
A,B,C,D,E = map(int,input().split())
together=[0]*(A+B)*(C+D)
for t in range((A+B)*(C+D)):
if t%(A+B)<A and t%(C+D)<C:together[t]=1
print(sum(together)*(E//((A+B)*(C+D))) + sum(together[:E%((A+B)*(C+D))]))