ふつうにおすすめのところ
- 平和記念公園
- おきなわワールド
- A&W(ルートビアは飲み放題)
- ブルーシール
個人的におすすめしたいところを書きます。
ふつうにおすすめのところ
個人的におすすめしたいところを書きます。
| open util/ordering [Graph] | |
| sig Graph | |
| { | |
| nodes: set Node, | |
| edge: nodes -> nodes, | |
| max_node: nodes, | |
| edge_d: Node -> Node | |
| } | |
| { |
| int main(void) | |
| { | |
| string str; | |
| string exam; | |
| int n; | |
| int ans; | |
| int interval; | |
| cin >> n; | |
| cin >> exam; |
| int main(void) | |
| { | |
| int n; | |
| int sum[203]; | |
| int num[203][3]; // [何人目][何番目のゲーム] | |
| int point[104]; | |
| int input; | |
| cin >> n; |
| int main(void) | |
| { | |
| string str; | |
| string exam; | |
| int n; | |
| int ans; | |
| int interval; | |
| cin >> n; | |
| cin >> exam; |
| class FauxPalindromes { | |
| public: | |
| string classifyIt(string word) { | |
| bool res = true; | |
| string str; | |
| for (int i = 0; i < word.size() / 2; i++){ | |
| if (word[i] != word[word.size() - i - 1]){ | |
| res = false; |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| int main(void) | |
| { | |
| char str[10]; | |
| char maxc; | |
| char minc; | |
| int maxt; |
| #include <stdio.h> | |
| int main(void) | |
| { | |
| int b1, b2, b3; | |
| scanf("%d %d %d", &b1, &b2, &b3); | |
| if (b1 == 1 && b2 == 1){ | |
| printf("Open\n"); |
| #include <stdio.h> | |
| int main(void) | |
| { | |
| int sum; | |
| int i; | |
| int input; | |
| sum = 0; | |
| for (i = 0; i < 10; i++){ |