ASCII Podiumを構築する


26

スポーツ競技では、勝者が表彰台に上ることがよくあります。1位の人が真ん中、2位の人が真ん中の高さ、3位の人が最も低く、右の方へ。ここで、いくつかの特別な調整を加えて再現します。

表彰台は以下のとおりです。

     @---@
     | @ |
@---@| | |
| @ || | |
| | || | |@---@
| | || | || @ |

これは、この課題の基礎となります。次のステップは、表彰台をその上にいる人々(印刷可能なASCII文字列)に合わせて十分に広くすることです。ただし、美的美しさを確保したいので(これは素晴らしい写真の機会です)、各表彰台は同じ幅である必要があり、幅は奇数でなければなりません。さらに、人々は(明らかに)表彰台の中央に立つことを望みます。そのため、弦はできるだけ中央に配置する必要があります。(左または右に揃えることができ、一貫している必要はありません。)上記の表彰台は最小サイズであり、3幅が広いと見なされます。

たとえば、["Tom", "Ann", "Sue"]1位、2位、3位をそれぞれ表す入力が与えられた場合、次の表彰台を出力します。

      Tom
     @---@
 Ann | @ |
@---@| | |
| @ || | | Sue
| | || | |@---@
| | || | || @ |

ただし、のAnne代わりにがある場合はAnn、次のサイズに進み5、文字列をできるだけ中央に配置する必要があります。ここでは、「余分な」文字Anneが中央の左側にくるように調整していますが、どの側に調整するかを選択できます。

         Tom
       @-----@
 Anne  |  @  |
@-----@|  |  |
|  @  ||  |  |  Sue
|  |  ||  |  |@-----@
|  |  ||  |  ||  @  |

もっと長い名前を探しましょう。どうですか["William", "Brad", "Eugene"]

          William
         @-------@
  Brad   |   @   |
@-------@|   |   |
|   @   ||   |   | Eugene
|   |   ||   |   |@-------@
|   |   ||   |   ||   @   |

ここではBrad、空白が多く、Eugeneそれほど多くWilliamなく、適切に収まっていることがわかります。

より長いテストケースの場合は、次のようにし["A", "BC", "DEFGHIJKLMNOPQRSTUVWXYZ"]ます。

                                     A
                         @-----------------------@
           BC            |           @           |
@-----------------------@|           |           |
|           @           ||           |           | DEFGHIJKLMNOPQRSTUVWXYZ
|           |           ||           |           |@-----------------------@
|           |           ||           |           ||           @           |

最後に、次のような最小の入力があります["A", "B", "C"]

       A
     @---@
  B  | @ |
@---@| | |
| @ || | |  C
| | || | |@---@
| | || | || @ |

  • 入力と出力は、任意の便利な方法で指定できます。
  • 入力は空でないことが保証されます(つまり、""名前として受け取ることはありません)。
  • STDOUTに出力するか、関数の結果として返すことができます。
  • 完全なプログラムまたは機能のいずれかが受け入れられます。
  • 文字が適切に並んでいる限り、任意の量の無関係な空白を使用できます。
  • 標準的な抜け穴は禁止されています。
  • これはので、通常のゴルフルールがすべて適用され、最短のコード(バイト単位)が勝ちます。

偶数の名前はすべて同じ方向に揃える必要がありますか?
スパー

1
最後の出力例の表彰台の長さが1ではなく3であるのはなぜですか?
bruderjakob17

3
彼は、「上記の表彰台は最小サイズで、3広いと考えている」冒頭で述べ@bruderjakob
rtpax

回答:



7

グルービー187176156、150のバイト

f={n->m=n*.size().max()|1;h=' '*(m/2);'30734715746756276647665'*.toLong().sum{(n*.center(m+2)+[' '*(m+2),"@${'-'*m}@","|$h@$h|","|$h|$h|",'\n'])[it]}}

オンラインでお試しください!

(注:groovy 2.5.6は可能ですが、tio groovyインタープリターはLong値を使用したリストのインデックス付けを処理できませんでした。したがって、tioの答えはバイトを追加する*.toShort()代わりに*.toLong()使用しています)

以下をf介して呼び出すことができるクロージャを定義します:

println(f(['tom','ann','sue']))

where fは文字列を返します。

説明:

コードをわかりやすくするために、次のものがあります。

f={n->
  m=n*.size().max()|1
  h=' '*(m/2)
  a=n*.center(m+2)+[' '*(m+2),"@${'-'*m}@","|$h@$h|","|$h|$h|",'\n']
  '30734715746756276647665'*.toLong().sum{a[it]}
}
  • f={n-> -1つのパラメーターでクロージャーfを定義する n
  • m=n*.size().max()|1 -最大名len、2進数、または奇数を見つける
  • h=' '*(m/2) -hには、後で使用されるfloor(m / 2)スペースが含まれます
  • a=...-要素を含むエンコードリストを作成します。
    • インデックス0,1,2-最大lenを中心とした名前
    • インデックス3-m + 2個のスペース
    • インデックス4- @---@lenに埋め込まれたパターン
    • インデックス5- | @ |パターン、lenにパディング
    • インデックス6- | | |パターン、lenにパディング
    • インデックス7-改行
  • '307...'*.toLong().sum{a[it]}-エンコードリストにインデックスを使用して結果を作成します。.sumgroovyのstring + stringが有効であるという事実を使用します。
  • 式で'3073...'*.toLong()は、*.スプレッド演算子を使用toLong()して各文字を呼び出し、数字のリストを返します。
  • 回答では、変数aがインライン化されている、ネラインが削除されているなどに注意してください。

6

キャンバス、45 バイト

r351⁰{|*@;∔;J└l2M2%±├ ××l⇵╷-×└+-α∔k+│∔⇵;}┐++⇵

ここで試してみてください!

説明:

r    Center the input, preferring left. Converts to an ASCII-art object
     which pads everything with spaces. This is the bulk of the magic.

 251⁰{ .... }            for each number in [2, 5, 1]:
      |*                 repeat "|" vertically that many times
        @;∔              prepend an "@" - a vertical bar for later
           ;             swap top 2 stack items - put the centered art on top
            J            push the 1st line of it (removing it from the art)
             └           order the stack to [remaining, "@¶|¶|..", currentLine]
              l          get the length of the current line
               2M        max of that and 2
                 2%      that % 2
                   ±├    (-that) + 2
                      ×× prepend (-max(len,2)%2) + 2 spaces
l                 get the length of the new string
 ⇵╷               ceil(len / 2) -1
   -×             repeat "-" that many times - half of the podiums top
     └            order stack to [art, currLine, "@¶|¶|..", "----"]
      +           append the dashes to the vertical bar = "@-----¶|¶|.."
       -α∔        vertically add "-" and the original vertical bar - "-¶@¶|¶|.."
          k       remove the last line of that to make up for the middles shortness
           +      and append that horizontally - half of the podium without the name
            │     palindromize the podium
             ∔    and prepend the name
              ⇵   reverse vertically so the outputs could be aligned to the bottom
               ;  and get the rest of the centered input on top
Finally, 
┐     remove the useless now-empty input
 ++   join the 3 podium parts together
   ⇵  and undo the reversing

乱用は「そして一貫している必要はない」ため、かなりわかりにくい。


うーん...説明のチャンスはありますか?
マティアスビャランド

1
@MatiasBjarlandですが、ほとんどはスタック操作であり、残りはほとんど理解できません。
dzaima

4

Pythonの2197の 190バイト

n=input()
w=max([3]+map(len,n))
w+=~w%2;W=w+2
S=('{:^%d}'%w).format
x,y,s='@| '
a,b,c=map(S,n);A,B,C=x+'-'*w+x,y+S(x)+y,y+S(y)+y
for l in-~W*s+a,s*W+A,s+b+s+B,A+C,B+C+s+c,C+C+A,C+C+B:print l

オンラインでお試しください!

-6バイト、Andrew Dunaiのおかげ


次のような行5を置換することによって、6つのバイトを保存することができますx,y,p='@| 'し、使用してpの代わりに' '
アンドリューDunai

1
@andrewdunaiありがとう:)
TFeld


3

木炭、63バイト

≔÷⌈EθLι²ηF³«J×ι⁺³⊗η⊗﹪⁻¹ι³⟦◧§θι⁺⊕η⊘⊕L§θι⟧≔⁻⁷ⅉιP↓ι@ηP↓ιP↓@@¹ηP↓ι@

オンラインでお試しください!リンクは、コードの詳細バージョンです。説明:

≔÷⌈EθLι²η

表彰台の各半分のスペースの数を計算します。

F³«

各場所をループします。入力は2番目、1番目、3番目の順序であることに注意してください。

J×ι⁺³⊗η⊗﹪⁻¹ι³

テキストがある行の先頭に位置付けます。

⟦◧§θι⁺⊕η⊘⊕L§θι⟧

テキストを中央に配置するのに十分な左余白で出力します。

≔⁻⁷ⅉι

表彰台の高さを取得します。

P↓ι@ηP↓ιP↓@@¹ηP↓ι@

表彰台を描きます。

代替アプローチ、63バイト:

≔÷⌈EθLι²ηF³«J×ι⁺³⊗η⊗﹪⁻¹ι³⟦◧§θι⁺⊕η⊘⊕L§θι⪫@-@×-η⟧E⁻⁷ⅉ⪫⪫||§|@¬κ× η

オンラインでお試しください!リンクは、コードの詳細バージョンです。説明:

≔÷⌈EθLι²η

表彰台の各半分のスペースの数を計算します。

F³«

各場所をループします。入力は2番目、1番目、3番目の順序であることに注意してください。

J×ι⁺³⊗η⊗﹪⁻¹ι³

テキストがある行の先頭に位置付けます。

⟦◧§θι⁺⊕η⊘⊕L§θι

テキストを中央に配置するのに十分な左余白で出力します。

⪫@-@×-η⟧

また、正しい幅に達するように-文字列の文字間にsを挿入して、表彰台の上部を出力し@-@ます。

E⁻⁷ⅉ⪫⪫||§|@¬κ× η

|中央の文字が@最初の行にあることを除いて、sを適切に間隔をあけて表彰台の残りを印刷します。


3

R 308 302 299

@JADのおかげで-6バイト@Guiseppeのおかげで
-3バイト、今は300歳未満

function(a){i=max(1,nchar(a)%/%2)
e=2*i+1
`~`=rep
g=' '
s=g~e+2
b='@'
p='|'
t=c(b,'-'~e,b)
x=c(p,g~i,b,g~i,p)
h=sub(b,p,x)
a=lapply(a,function(q){r=nchar(q);l=(e-r)/2+1;if(r%%2<1)c(g~l,q,g~l+1)else c(g~l,q,g~l)})
cat(s,a[[1]],s,s,t,s,a[[2]],x,s,t,h,s,x,h,a[[3]],h,h,t,h,h,x,fill=length(t)*3,sep='')}

おそらく、レイアウトを作成するより良い方法があります。データフレームにどのようなオプションがあるか試してみてください。

オンラインで試す



2
Rでさまざまなアスキーアートチャレンジをするのは嫌です...決して楽しいことではありません。を使用して3バイトを節約できますi=max(1,nchar(a)%/%2)。を生成しmatrixて使用writeする方が(aではなくdata.frame)短くなる場合があります。formatwith j="c"を使用して物事を自動調整することをお勧めしstrrepますが、この場合にも役立ちます。たぶん、golfRチャットルーム使ってアイデアを打ち消してみませんか?
ジュゼッペ

ええ、それがどれほど難しくなるかわかりませんでした。私は少しカントーを学びました。主にPythonをもっとよく学ぶか、Perlを学び始めるべきです:)。私は忘れていましたstrrep。私はそれを調べなければなりません。
CTホール



2

PHP、147バイト

私の最初のアイデアから93バイトをゴルフした、ストレートフォワード<?=

for(;~$v=_616606256046543440445[++$i];)echo$b="@   || "[$v],str_pad(($v&4?"|@":$argv)[$v&3],max(array_map(strlen,$argv))," -"[!$v],2),$b,"
"[$i%3];

コマンドライン引数から名前を取ります。で実行する-nr、オンラインで試してください
PHP 7が必要です。PHP 7.2(およびそれ以降、おそらく)で警告を生成します。+5バイトの修正については、TiOを参照してください。

マッピング:

0:@---@     = top border
1,2,3       = $argv with spaces
4: "| | |"  = default
5: "| @ |"  = below top
6: "     "  = empty

壊す:

for(;~$v=_616606256046543440445[++$i];)echo # loop through map:
    $b="@   || "[$v],                       # print left border
    str_pad(                                # print padded string:
        ($v&4?"|@":$argv)[$v&3],                # string to be padded
        max(array_map(strlen,$argv)),           # pad length = max argument length
        " -"[!$v],                              # pad with: dashes if top border, spaces else
        2                                       # option: center text (pad on both sides)
    ),
    $b,                                     # print right border
    "\n"[$i%3]                              # add linebreak every three items
;

の事前インクリメント$iは、改行のトリックから私を救います。
の空白6も空にすることができます。だから私はそれをやった。
しかし$argv[0]、トップボーダーの文字列-に使用することは、これまでで最高のゴルフでした。(そして9バイト節約!)


2

Go、436バイト

囲Goはゴルフにとってひどいものです。しかし:

package main;import ("fmt";"os");func main(){;z:=os.Args;f:=3;for i:=1;i<4;i++{;if len(z[i])>f{;f=len(z[i]);};};f+=1-f%2;p:=(f-1)/2+1;b:="@";for j:=0;j<f;j++{;b+="-";};b+="@";x:=fmt.Sprintf("|%*v%*v",p,"@",p,"|");y:=fmt.Sprintf("|%*v%[1]*v",p,"|");fmt.Printf("%*v%*v\n%*v%v\n%*v%*v\n%v%v\n%v%v%*v\n%v%v%v\n%v%v%v",f+2,"",p+1+len(z[1])/2,z[1],f+2,"",b,p+1+len(z[2])/2,z[2],2*f+3-p-len(z[2])/2,x,b,y,x,y,p+1+len(z[3])/2,z[3],y,y,b,y,y,x)}

分解:

package main
import (
  "fmt"
  "os"
)
func main() {
  z:=os.Args
  f:=3
  for i:=1;i<4;i++{
    if len(z[i])>f{
      f=len(z[i])
    }
  }
  f+=1-f%2
  p:=(f-1)/2+1
  b:="@"
  for j:=0;j<f;j++{
    b+="-"
  }
  b+="@"
  x:=fmt.Sprintf("|%*v%*v",p,"@",p,"|")
  y:=fmt.Sprintf("|%*v%[1]*v",p,"|")

  fmt.Printf("%*v%*v\n%*v%v\n%*v%*v\n%v%v\n%v%v%*v\n%v%v%v\n%v%v%v",
  f+2,"",p+1+len(z[1])/2,z[1],
  f+2,"",b,
  p+1+len(z[2])/2,z[2],2*f+3-p-len(z[2])/2,x,
  b,y,
  x,y,p+1+len(z[3])/2,z[3],
  y,y,b,y,y,x)
}

1

Java 8、399 394 373バイト

この解決策はおそらく長すぎますが、解決策です:)

static String r(String[]p){String s="";int l[]=new int[]{p[0].length(),p[1].length(),p[2].length()},m=Math.max(l[0],Math.max(l[1],l[2]))+2,i,q,j,a,k,t;if(m%2==0)m++;if(m==3)m=5;for(i=0;i<7;i++){for(q=0;q<3;q++)for(j=0;j<m;j++){a=(2*q+1)%3;k=2*a;t=(m-l[a])/2;s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%(m-1)==0?"@":"-":i>=k+2?j%(m-1)==0?"|":j==m/2?i==k+2?"@":"|":" ":" ";}s+="\n";}return s;}

順番に直接反復して5バイトを保存しました(q = 0,1,2の代わりにa = 1,0,2; a = f(q))

static String r(String[]p){String s="";int l[]=new int[]{p[0].length(),p[1].length(),p[2].length()},m=Math.max(l[0],Math.max(l[1],l[2]))+2,i,j,a,k,t;if(m%2==0)m++;if(m==3)m=5;for(i=0;i<7;i++){for(a=1;a<4;a=a==1?0:a+2)for(j=0;j<m;j++){k=2*a;t=(m-l[a])/2;s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%(m-1)==0?"@":"-":i>=k+2?j%(m-1)==0?"|":j==m/2?i==k+2?"@":"|":" ":" ";}s+="\n";}return s;}

@KevinCruijssenのおかげで21バイト節約されました:

static String r(String[]p){String s="";int l[]=new int[3],m=0,i,j,a,k,t;for(String x:p)l[m++]=x.length();m=Math.max(l[0],Math.max(l[1],l[2]))+2;m+=m%2<1?1:m==3?2:0;for(i=0;i<7;i++,s+="\n")for(a=1;a<4;a=a==1?0:a+2)for(j=0,k=2*a,t=(m-l[a])/2;j<m;j++)s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%~-m<1?"@":"-":i>=k+2?j%~-m<1?"|":j==m/2?i==k+2?"@":"|":" ":" ";return s;}

@KevinCruijssenが示唆したvarようにString、Java 10+の代わりに使用して、余分なバイトを節約することもできます。私はまだJava 10を持っていないという単純な理由でこれをしません:D、ラムダも使用できます。しかし、これは、Function<String[],String>変数への割り当てを省略した場合にのみバイト量を削減します。

展開された形式:

static String r(String[]p){
    String s=""; //The string that will be returned
    int l[]=new int[3], //An array containing the lengths of our three names
            m=0, //tmp variable for filling l
            i,j,a,k,t; //some declarations to save a few bytes lateron
    for(String x:p) l[m++]=x.length();
    m=Math.max(l[0],Math.max(l[1],l[2]))+2;
    m+=m%2<1? //ensure odd length of the podests
        1
        :m==3?2:0; //ensure the length is at least 3 (in my code, m is the length of the podests + 2)
    for(i=0;i<7;i++,s+="\n") //iterate by row
        for(a=1;a<4;a=a==1?0:a+2) //iterate by place: a=1,0,2
            for(j=0,k=2*a,t=(m-l[a])/2;j<m;j++) //iterate by column
                //k is the row number from top in which the a-th name goes
                //t is the column at which the name starts
                //now, append the right char:
                s+=i==k? //write the name
                    j>=t&j<t+l[a]?
                        p[a].charAt(j-t)
                        :" "
                    :i==k+1? //write the top of the podest ("@---@")
                        j%~-m<1?
                            "@"
                            :"-"
                    :i>=k+2? //write the bottom of the podest ("|  |@  |")
                        j%~-m<1? //the left and right edge of the podest
                            "|"
                            :j==m/2? //the center of the podest
                                i==k+2? //are we at the first row of the bottom?
                                    "@" //the case where we have to write "| @ |"
                                    :"|" //the case "| | |"
                                :" "
                        :" "
                ;
    return s;
}

入力はString、長さ3の-array として指定する必要があります。例は次のようになります。

public static void main(String[] args){
    System.out.print(r(new String[]{"Anthony", "Bertram", "Carlos"}));
}

出力:

          Anthony          
         @-------@         
 Bertram |   @   |         
@-------@|   |   |         
|   @   ||   |   | Carlos  
|   |   ||   |   |@-------@
|   |   ||   |   ||   @   |

1
いい答えです。PPCGへようこそ!私から+1!ここで、342バイトにするためのゴルフのいくつかの基本的なこと:通常のメソッドの代わりにJava 8+ラムダ。; varではなくJava 10以降String。for-eachループでlength-arrayを埋めました。同じ効果のために変更さif(m%2==0)m++;if(m==3)m=5;m+=m%2<1?m==2?3:1:0ました。すべて%nr==0に変更%nr<1; をに変更し%(m-1)ました%~-m。ブラケット{}を取り外せるように、ループ内にすべてを入れます。
ケビンクルーッセン

あなたはまだそれを見ていない場合は、Javaでゴルフのヒントでゴルフのヒント<すべての言語>のかもしれないの両方が通じ読んで面白いと。滞在を楽しんで!
ケビンクルイッセン

@KevinCruijssenよろしくお願いします!投稿を更新します!
bruderjakob17

提案m-l[a]>>1の代わり(m-l[a])/2i<k+2?" ":j%~-m<1?"|":j==m/2?i==k+2?"@":"|"代わりにi>=k+2?j%~-m<1?"|":j==m/2?i==k+2?"@":"|":" "
ceilingcat

1

C(GCC)302の 293 292 289 287バイト

ceilingcatのおかげで-6バイト

#define P(h,n)r=w+2-L[n];i/h?printf("%*s%*s%*s",-~r/2,D,L[n],i>h?D:N[n],r/2,D):printf(~i/h?"@%s@":"|%*s%c%*s|",~i/h?D+1:w/2,D,i>h-3?64:'|',w/2,D);
f(int**N){char L[3],w=3,i=3,r,D[99]={};for(;i--;)w=w<(L[i]=strlen(N[i]))?L[i]|1:w;memset(D+1,45,w);for(i=7;i--;puts(D)){P(4,1)P(6,0)P(2,2)}}

ここで実行

ゴルフのない説明付き(技術的には、マクロのバックスラッシュの後にコメントを書くことができないため、これは実行されません)

#define P(h,n)\
    r=w+2-L[n];\ //get leftover width
    i/h?\ //if i >= h
        printf("%*s%*s%*s",-~r/2,D,L[n],i>h?D:N[n],r/2,D):\//if too high print all spaces, otherwise center the name
        printf(~i/h?"@%s@":"|%*s%c%*s|",~i/h?D+1:w/2,D,i>h-3?64:'|',w/2,D);
//if (i == h - 1) print top row using D calculated if row right below top, else print '@'(64) in center, otherwise '|'
f(int**N){
    char
        L[3],//lengths of each string
        w=3,//width (init to minimum)
        i=3,//index, used in for loops
        l,//left padding
        r,//right padding
        D[99]={};//string of '-' of correct length (max 99) but first char is null for empty string
    for(;i--;)//i was set to 3 before, i will be {2,1,0}
        w=w<(L[i]=strlen(N[i]))?//set length to str len and compare to longest width so far
            L[i]|1://set it to length if longer, but make sure it is odd
            w;//do not replace
    memset(D+1,45,w); //set the first w bits of D to '-', leaves a null terminator
    for(i=7;i--;puts(D)){//i will be {6...0}
        P(4,1)//print second place, 4 high
        P(6,0)//print first place, 6 high
        P(2,2)//print thrid place, 2 high
    }
}

ここに呼び出しコードがあります

int main()
{
  char* N[3] = {"Tom", "Anne", "Sue"} ;
  f(N);
}

および出力

         Tom         
       @-----@       
  Anne |  @  |       
@-----@|  |  |       
|  @  ||  |  |  Sue  
|  |  ||  |  |@-----@
|  |  ||  |  ||  @  |

提案するfor(;i--;memset(D+1,45,w))w=w<(L[i]=strlen(N[i]))?L[i]|1:w;代わりにfor(;i--;)w=w<(L[i]=strlen(N[i]))?L[i]|1:w;memset(D+1,45,w);
ceilingcat

1

PowerShell for Windows、231 223バイト

param($a)$w=($a|% le*|sort)[-1]
if(3-gt$w){$w=3}$w+=1-$w%2
0..6|%{$r=$_
-join($a|%{$m=' -'[5-eq($o=$r+2*(++$i%3))]
$e='     @|||||'[$o]
$x=(,''*4+$_,'','@'+,'|'*4)[$o]
"$e$($x|% *ft(($x.Length+$w)/2-.1)$m|% *ht $w $m)$e"})}

オンラインでお試しください!

入力は配列@('second','first','third')です。展開されたバージョン:

param($arr)
$width=($arr|% length|sort)[-1]
if(3-gt$width){$width=3}
$width+=1-$width%2

0..6|%{ $row=$_                         # 7 rows
    -join($arr|%{                       # 3 joined columns. Each column array contains 11 lines.
        $offset = $row+2*(++$i%3)       # (2,4,0) -> offset in column array #   0:
        $middle = ' -'[5-eq$offset]                                         #   1:
        $edge   = '     @|||||'[$offset]                                    #   2:
        $center = ('','','','',$_,'','@','|','|','|','|')[$offset]          #   3:
                                                                            #   4:  name
        # pad $x to a center                                                #   5: @---@
        $center = $center|% PadLeft (($center.Length+$width)/2-.1) $middle  #   6: | @ |
        $center = $center|% PadRight $width $middle                         #   7: | | |
                                                                            #   8: | | |
        # add the $edge                                                     #   9: | | |
        "$edge$center$edge"                                                 #  10: | | |
    })
}

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.