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.

ABC-001 A「積雪深差」解説

Last updated at Posted at 2023-10-25

前置き

皆さん、こんにちは!
今回はABC-001のA問題「積雪深差」について解説していきたいと思います!
https://atcoder.jp/contests/abc001/tasks/abc001_1)

目次

  • 問題概要
  • 制約
  • 入力形式
  • 解説
  • おまけ

問題概要

ある時刻の積雪深$H_1$とその1時間前の積雪深$H_2$が与えられる。
この1時間前の間に降った雪の量$H_1 - H_2 $を出力してください。

制約

$0 \leq H_1, H_2 \leq 2000$

入力形式

$H_1$
$H_2$

解説

問題文に書いてある通りに $H_1 - H_2 $ を出力すれば正解になります。
$H_1, H_2$が2行にわたって与えられているので、int(input())を2回書いて入力を行うと正常に数字を受け取ることができます。

↓こちらが正しい出力をするコードです。

001-A.py
h1  = int(input())
h2  = int(input())
ans = h1-h2

print(ans)

AtCoderで提出したコード

おまけ

この問題をFortranで実装したコードも置いておきます。
Fortranの基礎を習得してみたい方は是非ご覧下さい。

001-A.f95
Program Answer
Implicit None
 
INTEGER H1,H2,ans
read *, H1
read *, H2
ans = H1 - H2

PRINT "(I0)" , ans

END Program Answer

FortranバージョンのACコード

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?