0
1

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 3 years have passed since last update.

PythonでABC160を解きたかった

Posted at

はじめに

A,Bしか解けませんでした。簡単だったのに。

A問題

問題

考えたこと
index指定してif

s = str(input())
if s[2] == s[3]:
    if s[4] == s[5]:
        print('Yes')
        quit()
print('No')

B問題

問題

考えたこと
500でXを割れるだけ割って余りを5で同様にしています。

x = int(input())
a = x // 500
b = (x % 500) // 5
ans = (1000*a+5*b)
print(ans)

C問題

問題

考えたこと
K - Aの隣の要素の差が最小になるような距離を取ればいいはず。これに気付くのに1時間以上かかりましたし、十分に時間あったのに実装できませんでした。

まとめ

色々とおつかれ様でした。疲れている時に無理してコンテストは参加しないほうがいいです。
おやすみなさい。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?