結果

問題 No.525 二度寝の季節
ユーザー nrapple10nrapple10
提出日時 2017-11-13 14:16:17
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 26,944 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-16 11:58:25
合計ジャッジ時間 1,409 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 0 ms
4,376 KB
testcase_05 AC 0 ms
4,376 KB
testcase_06 AC 0 ms
4,380 KB
testcase_07 AC 0 ms
4,376 KB
testcase_08 AC 0 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 0 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 0 ms
4,380 KB
testcase_15 AC 0 ms
4,380 KB
testcase_16 AC 0 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 0 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 WA -
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 0 ms
4,376 KB
testcase_27 WA -
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 WA -
testcase_33 AC 1 ms
4,376 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(void){
  int hh, mm;
  scanf("%d:%d", &hh, &mm);
  if((hh >= 0 && hh <= 23) && (mm >= 0 && mm <= 59)){
    if(mm + 5 > 59){
      if(hh + 1 > 23){
        hh = 0;
      }else{
        hh = hh +1;
      }
    }else{
      mm = mm + 5;
    }
  }
  printf("%02d:%02d\n", hh, mm);
}
0