結果

問題 No.2746 Bicolor Pyramid
ユーザー だれだれ
提出日時 2024-04-20 12:16:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 64,992 KB
最終ジャッジ日時 2024-10-12 07:36:06
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,448 KB
testcase_01 AC 49 ms
58,444 KB
testcase_02 AC 48 ms
58,804 KB
testcase_03 AC 48 ms
58,556 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 182 ms
63,976 KB
testcase_10 AC 220 ms
64,992 KB
testcase_11 AC 161 ms
63,388 KB
testcase_12 AC 192 ms
63,120 KB
testcase_13 AC 223 ms
64,460 KB
testcase_14 AC 48 ms
59,124 KB
testcase_15 AC 205 ms
59,576 KB
testcase_16 AC 80 ms
62,756 KB
testcase_17 AC 106 ms
62,304 KB
testcase_18 AC 109 ms
62,692 KB
testcase_19 AC 84 ms
62,868 KB
testcase_20 AC 86 ms
62,184 KB
testcase_21 AC 84 ms
61,796 KB
testcase_22 AC 95 ms
61,440 KB
testcase_23 AC 98 ms
62,372 KB
testcase_24 AC 103 ms
60,648 KB
testcase_25 AC 75 ms
61,440 KB
testcase_26 AC 75 ms
61,312 KB
testcase_27 WA -
testcase_28 AC 131 ms
61,772 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 113 ms
61,472 KB
testcase_32 AC 83 ms
62,536 KB
testcase_33 WA -
testcase_34 AC 150 ms
61,664 KB
testcase_35 AC 138 ms
60,832 KB
testcase_36 AC 153 ms
61,076 KB
testcase_37 AC 163 ms
60,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r, b = map(int, input().split())
hi = 1817121
lw = 0
while hi - lw > 1:
    mid = (hi + lw) // 2
    rr, bb = r, b
    for i in range(mid, 0, -1):
        if rr < bb:
            rr, bb = bb, rr
        if i * i <= rr:
            rr -= i * i
        else:
            bb -= i * i
    if min(rr, bb) >= 0:
        lw = mid
    else:
        hi = mid
print(lw)
0