Skip to content

Instantly share code, notes, and snippets.

View 3tomcha's full-sized avatar

Tomoya Hoshino 3tomcha

  • Minato-ku Tokyo
View GitHub Profile
#AOJ ITP1_1_D
N = input()
target_second=int(N)
# 1秒
# 1分→60秒
# 1時間→60分→60*60=3600秒
hour=target_second//3600