結果

問題 No.296 n度寝
ユーザー Co-3
提出日時 2020-09-20 11:08:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 92 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2024-06-24 10:39:40
合計ジャッジ時間 1,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d = map(int,input().split())
c += (a-1)*d
e = c//60
c -= 60*e
b += e
print(b)
print(c)
0