結果

問題 No.546 オンリー・ワン
ユーザー ckawatakckawatak
提出日時 2017-10-18 16:01:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 249 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 134,192 KB
最終ジャッジ日時 2024-11-18 14:33:02
合計ジャッジ時間 19,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,632 KB
testcase_01 AC 37 ms
112,116 KB
testcase_02 TLE -
testcase_03 AC 43 ms
134,192 KB
testcase_04 AC 38 ms
58,768 KB
testcase_05 AC 37 ms
126,628 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,L,H = list(map(int, input().split(' ')))
ns = list(map(int, input().split(' ')))

solution = 0
for i in range(L, H+1):
    yes = 0
    for n in ns:
        if i % n == 0:
            yes += 1
    if yes == 1:
        solution += 1
print(solution)
0