結果
| 問題 |
No.652 E869120 and TimeZone
|
| コンテスト | |
| ユーザー |
T1610
|
| 提出日時 | 2018-03-03 00:48:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 286 bytes |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-06-23 01:31:06 |
| 合計ジャッジ時間 | 2,353 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 16 WA * 14 |
ソースコード
def toStrDig(n, dig) :
s = str(n)
if len(s) < dig :
s = ('0' * (dig - len(s))) + s
return s
S = input().split()
x = (int(S[0])-9+24)%24 + int(S[1])/60
y = float(S[2][3 : ])
z = x + y
print(toStrDig((int(z)+24)%24, 2) + ":" +toStrDig(int((z - int(z)) * 60), 2))
T1610