結果
問題 | No.525 二度寝の季節 |
ユーザー | Yamyuki |
提出日時 | 2017-06-09 22:26:26 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 266 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 15:06:20 |
合計ジャッジ時間 | 1,114 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%s",s); | ^~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> int main(int argc, char const *argv[]){ char s[6]; int h,m; scanf("%s",s); h=(s[0]-'0')*10+(s[1]-'0'); m=(s[3]-'0')*10+(s[4]-'0'); m+=5; if(m>59){ m-=60; h++; if(h>23) h=0; } printf("%02d:%02d\n",h,m); return 0; }