-
https://info.atcoder.jp/entry/llm-abc-rules-ja
生成AIへの対策として運営から提供されたルールに抵触しないか調査する。
主に、以下の辺り。
> - AtCoderのページから、入出力ファイルを自動生成するツールも、この制限には該当しません。作成したプログラムを自動的に実行するツールなども許容されます。
ただし、入力を解析し、ソースコ…
meian updated
5 months ago
-
https://atcoder.jp/contests/abc285/tasks/abc285_e
時間内に解きたかった問題。
ia7ck updated
4 months ago
-
Problem name: Range Add Range Sum
## Remarks
I found what appears to actually, as surprising as it may be, be a bug in the AtCoder `lazysegtree` library, for which I filed https://github.com/atc…
-
- [x] 本体記事
- [x] atcode-toolsのエラーについて
-
-
shrink all circles into points (2-edge-connected-component)
```cpp
i64 cnt = 0, now = 0;
std::vector dfn(n, -1), low(n), belong(n, -1), stk;
std::function tarjan = [&](i64 node, i64 fa) {
dfn[n…
-
https://github.com/atcoder/ac-library/blob/d8ca7f26686f6c78d15d13ca438ea866526e87fb/atcoder/lazysegtree.hpp#L29
I think the comment here should be 'S(F, S)' instead of 'F(F, S)'.
-
[AtCoder Beginners Selection - AtCoder](https://atcoder.jp/contests/abs)
- [ ] ABC086A Product
- [ ] ABC081A Placing Marbles
- [x] ABC081B Shift only #3
- [x] ABC087B Coins #5
- [x] ABC083B S…
-
We want to store the history of our participation in various programming competitions in a JSON file, maybe on `data/competitions.json` (feel free to suggest a file name).
However, I'm still unsure…
-
AtCoderのルール変更によりABCの生成AI使用が禁止された。
[AtCoder生成AI対策ルール - 20240607版](https://info.atcoder.jp/entry/llm-abc-rules-ja)
それに伴い、 問題文のコピーが禁止となったため使用しているツールがルールに抵触していないか調査する。