結果

問題 No.2746 Bicolor Pyramid
ユーザー PNJPNJ
提出日時 2024-04-20 13:20:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-10-12 08:47:12
合計ジャッジ時間 4,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 41 ms
51,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 162 ms
60,672 KB
testcase_10 AC 204 ms
61,568 KB
testcase_11 AC 142 ms
61,056 KB
testcase_12 AC 183 ms
60,644 KB
testcase_13 AC 195 ms
60,800 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 219 ms
60,032 KB
testcase_16 AC 70 ms
59,520 KB
testcase_17 AC 95 ms
58,624 KB
testcase_18 AC 97 ms
59,008 KB
testcase_19 AC 71 ms
58,624 KB
testcase_20 AC 74 ms
58,752 KB
testcase_21 AC 77 ms
59,520 KB
testcase_22 AC 80 ms
59,136 KB
testcase_23 AC 88 ms
58,752 KB
testcase_24 AC 94 ms
58,880 KB
testcase_25 AC 62 ms
58,752 KB
testcase_26 AC 66 ms
59,392 KB
testcase_27 WA -
testcase_28 AC 117 ms
59,648 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 106 ms
59,136 KB
testcase_32 AC 72 ms
58,752 KB
testcase_33 WA -
testcase_34 AC 141 ms
59,008 KB
testcase_35 AC 126 ms
58,752 KB
testcase_36 AC 138 ms
59,008 KB
testcase_37 AC 139 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,B = map(int,input().split())
l = 1
r = 2000000
while r - l > 1:
  k = (l + r) // 2
  f = 1
  RR,BB = min(R,B),max(R,B)
  for kk in range(k,0,-1):
    if BB < kk*kk:
      f = 0
      break
    BB -= kk*kk
    if BB < RR:
      RR,BB = BB,RR
  if f:
    l = k
  else:
    r = k
print(l)
0