結果
| 問題 | No.894 二種類のバス |
| コンテスト | |
| ユーザー |
micomico_tisaki
|
| 提出日時 | 2019-10-04 09:39:19 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
TLE
不安定
|
| 実行時間 | - |
| コード長 | 219 bytes |
| 記録 | |
| コンパイル時間 | 53 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-09 12:07:56 |
| 合計ジャッジ時間 | 8,830 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | TLE * 1 -- * 16 |
ソースコード
a=list(map(int,input().split()))
abus=False
count=0
for i in range(a[0]):
if (a[0]/a[1])%1==0:
count+=1
abus=True
if (a[0]/a[2])%1==0 and abus==False:
count+=1
abus=False
print(count)
micomico_tisaki