結果

問題 No.296 n度寝
ユーザー convexineqconvexineq
提出日時 2021-01-02 13:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 89 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 53,228 KB
最終ジャッジ日時 2024-10-12 03:29:13
合計ジャッジ時間 1,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,756 KB
testcase_01 AC 41 ms
52,068 KB
testcase_02 AC 37 ms
52,616 KB
testcase_03 AC 37 ms
53,100 KB
testcase_04 AC 37 ms
52,576 KB
testcase_05 AC 37 ms
52,440 KB
testcase_06 AC 37 ms
52,276 KB
testcase_07 AC 37 ms
52,068 KB
testcase_08 AC 38 ms
51,628 KB
testcase_09 AC 38 ms
52,824 KB
testcase_10 AC 39 ms
51,828 KB
testcase_11 AC 38 ms
51,856 KB
testcase_12 AC 37 ms
52,336 KB
testcase_13 AC 37 ms
52,456 KB
testcase_14 AC 37 ms
51,760 KB
testcase_15 AC 38 ms
53,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h,m,t = map(int,input().split())
v = (h*60 + m + (n-1)*t)%1440
print(v//60)
print(v%60)
0