結果

問題 No.333 門松列を数え上げ
ユーザー YU HiroseYU Hirose
提出日時 2024-06-22 02:04:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-06-22 02:04:04
合計ジャッジ時間 843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,288 KB
testcase_01 AC 29 ms
52,068 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 28 ms
52,272 KB
testcase_08 AC 28 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
if b > a:
    print(a - 1)
else:
    print(2000000000 - a)
0