結果

問題 No.3054 Modulo Inequalities
ユーザー gew1fw
提出日時 2025-06-12 17:58:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 76,876 KB
最終ジャッジ日時 2025-06-12 17:59:43
合計ジャッジ時間 11,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 16 RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
x, y = 7, 5  # Starting from the first valid solution (a=3, b=4, c=5)

while True:
    current_digits = len(str(y))
    if current_digits == X:
        a = (x - 1) // 2
        b = a + 1
        print(a, b, y)
        break
    # Generate next solution using the recurrence relation
    next_x = 3 * x + 4 * y
    next_y = 2 * x + 3 * y
    x, y = next_x, next_y
0