結果
問題 | No.1256 連続整数列 |
ユーザー | rlangevin |
提出日時 | 2024-08-02 08:55:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 291 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 82,908 KB |
実行使用メモリ | 53,772 KB |
最終ジャッジ日時 | 2024-08-02 08:55:35 |
合計ジャッジ時間 | 2,731 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 37 ms
53,196 KB |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
52,996 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
52,692 KB |
testcase_10 | AC | 45 ms
53,220 KB |
testcase_11 | AC | 36 ms
53,256 KB |
testcase_12 | AC | 38 ms
52,488 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
52,104 KB |
testcase_16 | WA | - |
testcase_17 | AC | 37 ms
53,772 KB |
testcase_18 | WA | - |
testcase_19 | AC | 37 ms
52,924 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 36 ms
52,592 KB |
testcase_23 | AC | 36 ms
52,332 KB |
testcase_24 | WA | - |
testcase_25 | AC | 37 ms
52,692 KB |
ソースコード
def BinarySearch(yes, no, A): while abs(yes - no) != 1: mid = (yes + no)//2 if A >= 3 * mid + 3: yes = mid else: no = mid return 3 * yes + 3 A = int(input()) B = BinarySearch(-2, 10 ** 9 + 5, A) print("YES") if A == B else print("NO")