Skip to content

Commit 4b4b7bd

Browse files
committed
start
1 parent 5ad1465 commit 4b4b7bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4980
-8
lines changed

README.md

+19-8
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,27 @@
44
- [YouTube配信](https://www.youtube.com/watch?v=PxG2794Ujfg)
55
- [ポータルサイト](https://gbc2023.tenka1.klab.jp/portal/index.html)
66

7-
問題概要は14時公開予定です。
7+
## ドキュメント
88

9-
## 提供予定サンプルコード
9+
- [問題概要およびAPI仕様](problem.md)
10+
- [チュートリアル](tutorial.md)
11+
- [Runnerの使い方](runner.md)
12+
- [ポータルの使い方](portal.md)
13+
- [ビジュアライザの使い方](visualizer.md)
1014

11-
- Go
15+
## サンプルコード
16+
17+
- [Go](go)
1218
- go1.21.1 で動作確認
13-
- Python
19+
- [Python](py)
1420
- python 3.8.10, python 3.11.2 で動作確認
15-
- C#
21+
- [C#](cs)
1622
- dotnet 6.0.406 で動作確認
17-
- Rust
23+
- [Rust](rust)
1824
- cargo 1.66.1 で動作確認
19-
- C++(libcurl) 通信にライブラリを使用
25+
- [C++(libcurl)](cpp) 通信にライブラリを使用
2026
- g++ 9.4.0 で動作確認
21-
- C++(Python) 通信にPythonを使用
27+
- [C++(Python)](cpp_and_python) 通信にPythonを使用
2228
- python 3.8.10, g++ 9.4.0 で動作確認
2329

2430

@@ -38,3 +44,8 @@
3844
- SNS等の利用について
3945
- 本コンテスト開催中にSNS等にコンテスト問題について言及して頂いて構いませんが、ソースコードを公開するなどの直接的なネタバレ行為はお控えください。
4046
ハッシュタグ: #klabtenka1
47+
48+
## その他
49+
50+
- [ギフトカード抽選プログラム](lottery)
51+
- 抽選対象は join API で開始したゲームに一度以上 move API を実行した参加者です

cpp/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
```bash
2+
sudo apt install libcurl4-openssl-dev rapidjson-dev
3+
g++ -O2 main.cpp -lcurl -o main
4+
./main
5+
```

0 commit comments

Comments
 (0)