結果

問題 No.296 n度寝
ユーザー IHIH
提出日時 2021-01-08 20:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 128 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 53,656 KB
最終ジャッジ日時 2024-04-27 22:19:46
合計ジャッジ時間 1,337 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,412 KB
testcase_01 AC 32 ms
51,988 KB
testcase_02 AC 32 ms
52,296 KB
testcase_03 AC 32 ms
53,036 KB
testcase_04 AC 32 ms
51,872 KB
testcase_05 AC 33 ms
53,412 KB
testcase_06 AC 32 ms
53,520 KB
testcase_07 AC 32 ms
53,260 KB
testcase_08 AC 33 ms
52,952 KB
testcase_09 AC 32 ms
53,656 KB
testcase_10 AC 33 ms
52,064 KB
testcase_11 AC 31 ms
52,944 KB
testcase_12 AC 31 ms
52,136 KB
testcase_13 AC 30 ms
52,892 KB
testcase_14 AC 32 ms
52,548 KB
testcase_15 AC 33 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h,m,t = map(int,input().split())

n = (n-1)*t
hh = n//60
mm = n%60

h += hh 
m += mm
h += m//60
m = m%60
print(h%24)
print(m)
0