0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Paiza問題集】算術・代入演算メニュー/代入演算

Posted at

Paiza問題集

算術・代入演算メニュー/代入演算

Step01 代入演算1

Step01
"""
代入演算1
https://paiza.jp/works/mondai/arithmetic_substitution_op/arithmetic_substitution_op__substitution_step1

問題
変数Nを0で初期化する
Nに3,286を足した値をNへ代入する
Nに4,736 をかけた値をNへ代入する
Nを12,312で割った余りをNへ代入する
Nを出力する
"""

N = 0
N = N + 3286
N = N * 4736
N = N % 12312
print(N)

Step02 代入演算2

Step02
"""
代入演算2
https://paiza.jp/works/mondai/arithmetic_substitution_op/arithmetic_substitution_op__substitution_step2

問題
整数A,B,Cが与えられる
変数Nを0で初期化する
NにAを足した値をNへ代入する
NにBをかけた値をNへ代入する
NをCで割ったあまりをNへ代入する
Nを出力する
"""

A, B, C = map(int, (input().split()))

N = 0
N = N + A
N = N * B
N = N % C
print(N)

Step03 代入演算3

Step03
"""
代入演算3
https://paiza.jp/works/mondai/arithmetic_substitution_op/arithmetic_substitution_op__substitution_step3

問題
変数Nを10000で初期化する
Nを361で割った商をNへ代入する
Nを28で割った余りをNを代入する
Nを出力する
"""

N = 10000
N = N // 361
N = N % 28
print(N)

Final問題 代入演算4

Final問題
"""
代入演算4
https://paiza.jp/works/mondai/arithmetic_substitution_op/arithmetic_substitution_op__substitution_step4

問題
整数A,Bが与えられる
変数Nを10000で初期化する
NをAで割った商をNへ代入する
NをBで割った余りをNへ代入する
Nを出力する
"""

A, B = map(int, input().split())

N = 10000
N = N // A
N = N % B
print(N)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?