結果
問題 |
No.651 E869120 and Driving
|
ユーザー |
![]() |
提出日時 | 2019-04-23 06:51:07 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 203 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 20:24:32 |
合計ジャッジ時間 | 910 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
// yukicoder: No.651 E869120 and Driving // 2019.4.23 bal4u #include <stdio.h> int main() { int a, tim; scanf("%d", &a); tim = 600 + (60*a)/100; printf("%02d:%02d\n", tim/60, tim%60); return 0; }