結果
| 問題 | No.1236 長針と短針 |
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-08-28 12:50:51 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 343 bytes |
| 記録 | |
| コンパイル時間 | 580 ms |
| コンパイル使用メモリ | 114,968 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-07-02 07:46:11 |
| 合計ジャッジ時間 | 1,728 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;
int main()
{
int a, b, ds;
cin >> a >> b;
double l, s;
a = a*300 + b*5;
b = b*60;
ds = ((a+3600 - b)%3600)*60/55;
cout << ds << endl;
}
kpinkcat