結果

問題 No.1057 素敵な日
ユーザー stngstng
提出日時 2022-08-27 14:33:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-04-22 12:57:00
合計ジャッジ時間 1,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,548 KB
testcase_01 AC 35 ms
52,236 KB
testcase_02 AC 35 ms
52,752 KB
testcase_03 AC 34 ms
53,564 KB
testcase_04 AC 36 ms
52,232 KB
testcase_05 AC 35 ms
53,384 KB
testcase_06 AC 38 ms
52,600 KB
testcase_07 AC 37 ms
52,208 KB
testcase_08 AC 37 ms
53,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [int(i) for i in input().split()]
a.sort()
a[1] = min(a[0]+1,a[1])
print(a[0]+a[1]-1)
0