結果
| 問題 |
No.652 E869120 and TimeZone
|
| コンテスト | |
| ユーザー |
T1610
|
| 提出日時 | 2018-03-03 00:49:46 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 299 bytes |
| コンパイル時間 | 210 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-23 01:31:24 |
| 合計ジャッジ時間 | 1,940 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 29 WA * 1 |
ソースコード
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 + 0.00000001), 2))
T1610