結果

問題 No.296 n度寝
ユーザー tjake
提出日時 2015-12-06 13:53:34
言語 Python2
(2.7.18)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 74 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 22:33:05
合計ジャッジ時間 776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h,m,t=map(int,raw_input().split())
m+=t*n-t
print(h+m/60)%24
print m%60
0