結果
問題 | No.1048 Zero (Advanced) |
ユーザー | ddnne |
提出日時 | 2020-05-08 22:20:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-04 00:53:11 |
合計ジャッジ時間 | 1,282 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,880 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 29 ms
10,880 KB |
testcase_04 | RE | - |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | RE | - |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | RE | - |
testcase_09 | AC | 28 ms
10,880 KB |
testcase_10 | AC | 28 ms
10,752 KB |
testcase_11 | RE | - |
testcase_12 | AC | 28 ms
11,008 KB |
testcase_13 | RE | - |
testcase_14 | AC | 28 ms
10,880 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 28 ms
10,880 KB |
testcase_18 | RE | - |
コンパイルメッセージ
Main.py:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? if math.floor(R * K / M) - math.floor(L * K /M) >= 1 or R == 0 or L == 0 (R == L and (R * K) % M == 0) or K == 0:
ソースコード
L, R, M, K = list(map(int, input().split())) import math # if L*K <= M <= R*K: if math.floor(R * K / M) - math.floor(L * K /M) >= 1 or R == 0 or L == 0 (R == L and (R * K) % M == 0) or K == 0: print('Yes') else: print('No')