This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: AI1] | |
銅貨,銅貨,銅貨を使用しました。 | |
銀貨を購入しました。 | |
[1ターン: aoisensi] | |
銅貨,銅貨を使用しました。 | |
礼拝堂を購入しました。 | |
[2ターン: AI1] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
役人を購入しました。 | |
(AI1がデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: AI1] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
民兵を購入しました。 | |
[1ターン: aoisensi] | |
銅貨,銅貨,銅貨を使用しました。 | |
村を購入しました。 | |
[2ターン: AI1] | |
銅貨,銅貨,銅貨を使用しました。 | |
宰相を購入しました。 | |
(AI1がデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: aoisensi] | |
銅貨,銅貨,銅貨を使用しました。 | |
銀貨を購入しました。 | |
[1ターン: ヽ( ・`ω・´)ゝ] | |
銅貨,銅貨,銅貨を使用しました。 | |
仮面舞踏会を購入しました。 | |
[2ターン: aoisensi] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
祝宴を購入しました。 | |
(aoisensiがデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: bgnori] | |
銅貨,銅貨を使用しました。 | |
堀を購入しました。 | |
[1ターン: aoisensi] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
鍛冶屋を購入しました。 | |
[2ターン: bgnori] | |
銅貨,銅貨,銅貨,銅貨,銅貨を使用しました。 | |
鍛冶屋を購入しました。 | |
(bgnoriがデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: aoisensi] | |
銅貨,銅貨,銅貨を使用しました。 | |
大広間を購入しました。 | |
[1ターン: bgnori] | |
銅貨,銅貨,銅貨を使用しました。 | |
仮面舞踏会を購入しました。 | |
[2ターン: aoisensi] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
橋を購入しました。 | |
(aoisensiがデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1ターン: bgnori] | |
銅貨,銅貨,銅貨,銅貨を使用しました。 | |
鉄工所を購入しました。 | |
[1ターン: aoisensi] | |
銅貨,銅貨,銅貨を使用しました。 | |
執事を購入しました。 | |
[2ターン: bgnori] | |
銅貨,銅貨,銅貨を使用しました。 | |
銀貨を購入しました。 | |
(bgnoriがデッキを切り直しました。) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
const char *str[] = { | |
"あ","い","いぇ","う","うぃ","うぇ","うぉ","え","お", | |
"か","が","き","ぎ","きぇ","きゃ","きゅ","ぎゅ","きょ","ぎょ","く","ぐ","け","げ","こ","ご", | |
"さ","ざ","し","じ","しぇ","じぇ","しゃ","じゃ","しゅ","じゅ","す","ず","すぃ","ずぃ","せ","ぜ","そ","ぞ", | |
"た","だ","ち","ちぇ","ちゃ","ちゅ","ちょ","つ","つぁ","つぃ","つぇ","つぉ","て","で","てぃ","でぃ","てゅ","でゅ","と","ど","とぅ","どぅ", | |
"な","に","にぇ","にゃ","にゅ","にょ","ぬ","ね","の", | |
"は","ば","ぱ","ひ","び","ぴ","ひぇ","びぇ","ぴぇ","ひゃ","びゃ","ぴゃ","ひゅ","びゅ","ぴゅ","ひょ","びょ","ぴょ","ふ","ぶ","ぷ","ふぁ","ふぃ","ふぇ","ふぉ","へ","べ","ぺ","ほ","ぼ","ぽ", | |
"ま","み","みぇ","みゃ","みゅ","みょ","む","め","も", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <random> | |
#include <iostream> | |
#include <time.h> | |
using namespace std; | |
void randomize() | |
{ | |
srand((unsigned int)clock()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import re | |
import os | |
import sys | |
import json | |
import urllib | |
import urllib2 | |
import hashlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void directoryCopy(File dust, File source){ | |
for(File sources:source.listFiles()){ | |
if(sources.isFile()){ | |
fileCopy(dust, sources); | |
} else { | |
File folder = new File(dust, sources.getName()); | |
folder.mkdir(); | |
directoryCopy(folder,sources); | |
} | |
} |