結果

問題 No.1236 長針と短針
ユーザー 沙耶花沙耶花
提出日時 2020-09-25 22:15:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 208,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 06:38:15
合計ジャッジ時間 3,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000



int main(){

	vector<vector<int>> t = {{0,0,0},{1,5,27},{2,10,54},{3,16,21},{4,21,49},{5,27,16},{6,32,43},{7,38,10},{8,43,38},{9,49,5},{10,54,32}};
	
	vector<int> S;
	
	rep(i,t.size()*10){
		S.push_back(t[i%11][0]*3600+t[i%11][1]*60+t[i%11][2]);
		rep(j,t.size()/11){
			S.back() += 3600 * 12;
		}
	}
	
	int A,B;
	cin>>A>>B;
	int C = B*60 + A*3600;
	
	cout<<(*lower_bound(S.begin(),S.end(),C)) - C<<endl;;
	
	return 0;
}
0