2022-06-16から1日間の記事一覧

ABC233 C - Product ~map解法~

問題 https://atcoder.jp/contests/abc233/tasks/abc233_c AC https://atcoder.jp/contests/abc233/submissions/32504623 解説にmap解法がなかったので書いておく code int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N,X; cin>>N>>X; m…