Maybe next time we should not make ChatGPT-able problems or OEIS-able problems. :)
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Name |
---|
Well well well...
why were you even testing ChatGPT... I hope you did this after the round not during
Because afaik it is not banned, much like OEIS? :)
what rule says it isn't allowed?
what's wrong with it? using chatgpt is pure skill
how does the chat gpt response translate into a solution for n = 99 tho
I mean you can append pairs of 0s at the end of the solution..
oh LMAO
LOL this is actually smarter than the intended sol
Wat What's the intended sol then?
I assume that it's about playing with these patterns: 169 (1003, 1030 ...), 196 (1400), 961 (3001, 3010, ...) you can refer to my code.
doesnt the intended solution also need appending 0s to existing solutions?
yeah but thats only to make answer at least as much as the n — 2 one, but we now need to add 2 more which we do by 169 961, i guessed the pattern but if we put the same amount of 0s between 1, 6 and between 6, 9 it remains a perfect square, same for 961
e.g: 169, 10609, 9006001
EDIT : my bad i didnt see the above comments, i tried to do this exact thing with chatgpt too but it cant fucking do simple arithmetics, i guess paid version is better?
I checked the editorial and they do have such a view, but I guess most people just perceived them as generating $$$n$$$ patterns.
as my know chatgpt is bad on math how could it find them
I mean, asking for chatgpt to find what you asked is almost the same effort as writing code to find what you asked. It was expected to do some kind of bruteforce, you just asked chatgpt to do it for you. I would only be concerned if it output that after printing the statement.
So true. I asked it to solve 3, 5, 7, 9, 11 and found that I can append 00 at the end..
Same but i coded it for small n (up to 9, then up to 11) and appended 00 at the end. Guess i should be asking chatgpt for this sort of simple bruteforces.
edit: on second thought i would be scared of it spitting random bullshit at me so maybe not
Oh my god what happened how does this have 6 revisions
did you verify them?
Yes.
Assuming it's correct, do you suppose that the solution set is scraped off the internet somewhere? I would be very impressed if ChatGPT generated those numbers by itself (without access to a Python interpreter).
At least the set seems to have all digits from $$$0$$$ to $$$9$$$, and I was able to find this Quora link related to this problem that could have been in the training data. However, it does not seem to have the set of numbers that the OP pointed out.
The latest ChatGPT can run Python code online.
So it technically generated some Python code and ran it.
I checked and this is the code it ran:
Bro used chatGPT well rather than logic :|
Chat GPT wasn't necessary, you can do it with this simple code.
bro this is almost exactly the same code I used.
Well, yes, it's bruteforceable with a brief formal statement, so it'd be surprising if it wasn't chatgptable.
Well, this isn't the full solution, you have to do more thing. The problem itself isn't ChatGPT able, I tried it.
LOL who needs chatgpt when you can a seperate script to generate squares.
Can you share your prompt please? Zhtluo
https://chat.openai.com/share/fdd82992-fee2-4a2c-b8ec-05c069969e67
So cool. About time I start respecting AI assisted CP. Btw, why did you feel that there would be 99+ numbers at 11 itself? It seems very non-obvious
I actually copied ChatGPT's code and messed around a bit offline. I saw some large sol for 9, 11, 13... which makes me conjure it. (Well technically I found the 99+ sol offline myself during the contest with GPT's code. This conversation is more like a test than what I did in contest.)
I see, thanks!