結果

問題 No.525 二度寝の季節
ユーザー moririn2528_cmoririn2528_c
提出日時 2017-06-09 22:33:03
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 55,640 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 15:19:47
合計ジャッジ時間 1,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int char_int(char)’:
main.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
   11 | }
      | ^

ソースコード

diff #

#include<iostream>
#include<cstdio>
using namespace std;

int char_int(char ca){
	int i;
	char cb;
	for(i=0,cb='0';i<10;i++,cb++){
		if(ca==cb)return i;
	}
}

int main(){
	char ca[10];
	int s[2];
	int i,j,k;
	cin>>ca;
	s[0]=char_int(ca[0])*10+char_int(ca[1]);
	s[1]=char_int(ca[3])*10+char_int(ca[4]);
	s[1]+=5;
	if(s[1]>=60)s[1]%=60,s[0]++;
	if(s[0]>=24)s[0]-=24;
	printf("%02d:%02d\n",s[0],s[1]);
	return 0;
}
0