2020-04-01から1ヶ月間の記事一覧

AtCoder Beginner Contest 161 過去問 (A~C)

参照 atcoder.jp A問題 AとB・Cの値を入れ替えるだけの問題です。 a = list(map(int, input().split(' '))) k = a[0] a[1],a[0] = a[0],a[1] a[2],a[0] = a[0],a[2] a=list(map(str, a)) aa = ' '.join(a) print(aa) B問題 N種類の商品人気投票に対して、 そ…

AtCoder Beginner Contest 141 過去問 (A~C)

参照 atcoder.jp A問題 正直綺麗なコードとは言えません。 now=input() if now=='Sunny': print('Cloudy') elif now=='Cloudy': print('Rainy') else: print('Sunny') B問題 問題なく。 ss=input() for i,s in enumerate(ss): if (i+1)%2!=0 and s=='L': pri…

AtCoder Beginner Contest 164 振り返り

参照 atcoder.jp A問題 問題なく。 s,w=map(int, input().split()) if s<=w: print('unsafe') else: print('safe') B問題 もう少し正確さとスピードを求めないとなあ。 a,b,c,d=map(int, input().split()) import math if math.ceil(c/b)<=math.ceil(a/d): p…

AtCoder Beginner Contest 140 過去問 (A~C)

参照 atcoder.jp A問題 鬼簡単です。 print(int(input())**3) B問題 配列がややこしく、 頭が混乱して思ってたより時間がかかってしまいました・・・。 次回から時間を測って、かかった時間をブログに記載していこうと思います。 そうした方がスコア伸びるか…

AtCoder Beginner Contest 144 過去問 (A~C)

参照 atcoder.jp A問題 特に問題なく。 a,b=map(int,input().split()) if 0

AtCoder Beginner Contest 145 過去問 (A~C)

参照 atcoder.jp A問題 問題なく print(int(input())**2) B問題 問題なく n=int(input()) s=input() if n%2!=0: print('No') elif s[:int(n/2)]==s[int(n/2):]: print('Yes') else: print('No') C問題 与えられたN個の座標に対して、 N!通りの経路の組み合わ…

AtCoder Beginner Contest 156 過去問 (A~C)

参照 atcoder.jp A問題 AtCoderの仕組みがわかりました。 とりあえぜ表示レーティングを上げるには、 10回以上コンテストに参加しないと不利らしいです。 n,r=map(int,input().split()) if n>=10: print(r) else: print(r+100*(10-n)) B問題 再帰関数の基礎…

AtCoder Beginner Contest 148 過去問 (A~C)

参照 atcoder.jp A問題 特に問題なく a=int(input()) b=int(input()) print(6-a-b) B問題 特に問題なく n=int(input()) s,t=input().split() str_='' for i in range(n): str_+=(s[i]+t[i]) print(str_) C問題 aとbの最小公倍数を求める問題。 1≤N≤10^5でし…

AtCoder Beginner Contest 149 過去問(A~C)

参照 atcoder.jp A問題 文字列を繋げろとしか書かれてなかったので、 サンプル例を参考に解きました。 s,t = input().split() print(t+s) B問題 Cを解いて安心したせいか、 気が抜けてBでWAを出してしまいました。 日々のルーティーンは大事です。 a,b,k=map…

AtCoder Beginner Contest 150 過去問(A~C)

参照 atcoder.jp A問題 難なく突破。 k,x = map(int, input().split()) if 500*k>=x: print('Yes') else: print('No') B問題 A問題くらい簡単でした。 input() print(input().count('ABC')) C問題 N個の数字で形成された順列が用意され、 順列にはN!通りの並…

AtCoder Beginner Contest 153 過去問 (A~C)

参照 atcoder.jp A問題 難なく突破 import math h,a = map(int, input().split()) print(math.ceil(h/a)) B問題 こちらも難なく突破 h,n = map(int, input().split()) a = list(map(int,input().split())) if h>sum(a):print('No') else:print('Yes') C問題 …

AtCoder Beginner Contest 152 過去問 (A~C)

参照 atcoder.jp A問題 難なく突破 n,m = map(int, input().split()) print('Yes') if n==m else print('No') B問題 こちらも難なく突破 a,b = input().split() print(sorted([a*int(b),b*int(a)])[0]) C問題 配列Pが並べられており、i番目の数字より前の数…

Gitで発生したエラー【Updates were rejected because the tip of your current branch is behind】

gitで初歩的なエラー $(master) git push origin master ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/xxxxxxxxxxx/Vue-website.git' hint: Updates were rejected because the tip of your c…

AtCoder Beginner Contest 155 過去問(A~C)

A問題 特に問題なし a = list(map(int, input().split())) if len(set(a))==2: print('Yes') else: print('No') B問題 特に問題なく n = int(input()) aa = list(map(int, input().split())) for a in aa: if a%2==0 and (a%3!=0 and a%5!=0): print('DENIED…

AtCoder Beginner Contest 154 過去問(A~C)

A問題 特に問題なく balls = {} s,t = map(str, input().split()) a,b = map(int, input().split()) u = input() balls[s],balls[t] = a,b balls[u]-=1 print('%d %d'%(balls[s],balls[t])) B問題 めっちゃ簡単。なんだこれ。 print('x'*len(input())) C問題…

AtCoder Beginner Contest 151 過去問(A~C)

A問題 特に問題なく import string s = string.ascii_lowercase print(s[s.index(str(input()))+1]) B問題 特に問題なく n,k,m=map(int, input().split()) lis = list(map(int, input().split())) nokori = m*n-sum(lis) if k

Docker+VSCodeでVue.js環境構築

ディレクトリ事情 Vue-myappフォルダ以下です。 |--Vue-myapp | |--docker | | |--Dockerfile | |--docker-compose.yml | |--.devcontainer.json | |--.vscode | | |--launch.json Dockerコンテナ作成 Dockerfile 実行コマンドをここで表記。 ローカル環境を…

AtCoder Beginner Contest 162 過去問

悲報 ワイ、163を解いていたつもりが162を解いており無事死亡— アオイ (@cyberdive00) 2020年4月19日 ここ最近勉強をサボっていたツケですね・・・ これからは毎日AtCoderの問題解きますので、 AtCoderの神様・・・どうか私を見捨てないで・・・ A問題 これ…

AtCoder Beginner Contest 160 初コンペ

3日前のことですが、AtCoder Beginner Contestに参加してみました。 結果は3完。初体験なので、コーダーカラーは灰色です。 A問題 楽に解けました。 a = list(input()) print('Yes') if a[2]==a[3] and a[4]==a[5] else print('No') B問題 こちらも楽に解け…