結果
問題 |
No.3054 Modulo Inequalities
|
ユーザー |
![]() |
提出日時 | 2025-06-12 12:47:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 310 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 77,244 KB |
最終ジャッジ日時 | 2025-06-12 12:48:18 |
合計ジャッジ時間 | 10,829 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 16 RE * 15 |
ソースコード
x, y = 7, 5 X = int(input()) required_length = X while True: current_length = len(str(y)) if current_length == required_length: a = (x - 1) // 2 b = a + 1 c = y print(a, b, c) break next_x = 3 * x + 4 * y next_y = 2 * x + 3 * y x, y = next_x, next_y