結果

問題 No.113 宝探し
ユーザー evawenisevawenis
提出日時 2020-06-03 18:34:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 194,744 KB
最終ジャッジ日時 2025-01-10 20:52:27
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	string s; cin>>s;
	vector<int>v(5,0);
	for(auto&&i:s)++v.at(i%8-3);
	auto sq=[](int a){return (uint64_t)a*a;};
	cout<<sqrtl(sq(abs(v.at(0)-v.at(3)))+sq(abs(v.at(2)-v.at(4))))<<"\n"s;
}
0