結果

問題 No.2746 Bicolor Pyramid
ユーザー PNJPNJ
提出日時 2024-04-20 12:55:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-10-12 08:19:07
合計ジャッジ時間 4,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,984 KB
testcase_01 AC 44 ms
57,984 KB
testcase_02 AC 44 ms
57,728 KB
testcase_03 AC 44 ms
57,728 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
57,728 KB
testcase_08 AC 45 ms
57,856 KB
testcase_09 AC 166 ms
60,928 KB
testcase_10 AC 175 ms
60,416 KB
testcase_11 AC 137 ms
60,544 KB
testcase_12 AC 172 ms
61,056 KB
testcase_13 AC 170 ms
60,288 KB
testcase_14 AC 43 ms
57,856 KB
testcase_15 AC 189 ms
60,544 KB
testcase_16 AC 82 ms
61,056 KB
testcase_17 AC 111 ms
60,544 KB
testcase_18 AC 83 ms
58,372 KB
testcase_19 AC 61 ms
58,112 KB
testcase_20 AC 63 ms
58,112 KB
testcase_21 AC 64 ms
57,984 KB
testcase_22 AC 71 ms
58,112 KB
testcase_23 AC 103 ms
60,928 KB
testcase_24 AC 110 ms
60,416 KB
testcase_25 AC 57 ms
57,984 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 142 ms
60,160 KB
testcase_29 AC 60 ms
58,240 KB
testcase_30 WA -
testcase_31 AC 120 ms
60,416 KB
testcase_32 AC 84 ms
61,056 KB
testcase_33 AC 57 ms
58,368 KB
testcase_34 AC 109 ms
58,368 KB
testcase_35 AC 151 ms
60,288 KB
testcase_36 AC 174 ms
60,288 KB
testcase_37 AC 96 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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