結果
| 問題 | No.714 回転寿司屋のシミュレート |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-20 05:27:56 |
| 言語 | Kuin (KuinC++ v.2021.9.17) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 701 bytes |
| 記録 | |
| コンパイル時間 | 1,422 ms |
| コンパイル使用メモリ | 169,020 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-05 17:02:17 |
| 合計ジャッジ時間 | 2,493 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
コンパイルメッセージ
out.cpp:676:14: warning: first argument in call to 'memset' is a pointer to non-trivially copyable type 'std::shared_ptr<Dict_<std::shared_ptr<Array_<char16_t>>, long>>' [-Wnontrivial-memcall]
676 | memset(r->B, 0, sizeof(T) * static_cast<std::size_t>(h + bufLen_<T>()));
| ^
out.cpp:688:9: note: in instantiation of function template specialization 'newArraysRec_<std::shared_ptr<Array_<std::shared_ptr<Dict_<std::shared_ptr<Array_<char16_t>>, long>>>>>::operator()<long long>' requested here
688 | return newArraysRec_<T>()(std::forward<A>(a)...);
| ^
out.cpp:1626:11: note: in instantiation of function template specialization 'newArrays_<std::shared_ptr<Array_<std::shared_ptr<Dict_<std::shared_ptr<Array_<char16_t>>, long>>>>, long long>' requested here
1626 | (k_ao) = (newArrays_<type_(Array_<type_(Dict_<type_(Array_<char16_t>), int64_t>)>)>((21LL)));
| ^
out.cpp:676:14: note: explicitly cast the pointer to silence this warning
676 | memset(r->B, 0, sizeof(T) * static_cast<std::size_t>(h + bufLen_<T>()));
| ^
| (void*)
1 warning generated.
ソースコード
func main()
var n: int :: cui@inputInt()
var wish: []dict<[]char, int> :: #[21]dict<[]char, int>
for(1, n)
switch(cui@inputInt())
case 0
var c: int :: cui@inputInt()
do wish[c] :: #dict<[]char, int>
var m: int :: cui@inputInt()
for(1, m)
var a: []char :: cui@inputStr()
do wish[c].add(a, wish[c].get(a, &) + 1)
end for
case 1
var b: []char :: cui@inputStr()
var ans: int :: -1
for c(1, 20)
if(wish[c] <>& null & wish[c].get(b, &) <> 0)
do wish[c].add(b, wish[c].get(b, &) - 1)
do ans :: c
break c
end if
end for
do cui@print("\{ans}\n")
case 2
var c: int :: cui@inputInt()
do wish[c] :: null
end switch
end for
end func