結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | AreTrash |
提出日時 | 2016-04-15 10:28:07 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 1,612 bytes |
コンパイル時間 | 735 ms |
コンパイル使用メモリ | 112,044 KB |
実行使用メモリ | 26,812 KB |
最終ジャッジ日時 | 2024-10-04 09:24:29 |
合計ジャッジ時間 | 1,695 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
24,524 KB |
testcase_01 | AC | 22 ms
26,812 KB |
testcase_02 | AC | 28 ms
26,572 KB |
testcase_03 | AC | 22 ms
24,748 KB |
testcase_04 | AC | 23 ms
22,712 KB |
testcase_05 | AC | 24 ms
24,528 KB |
testcase_06 | AC | 26 ms
26,696 KB |
testcase_07 | AC | 28 ms
25,040 KB |
testcase_08 | AC | 27 ms
24,660 KB |
testcase_09 | AC | 27 ms
24,876 KB |
testcase_10 | AC | 22 ms
24,660 KB |
testcase_11 | AC | 23 ms
24,912 KB |
testcase_12 | AC | 23 ms
24,516 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace No171_1{ public class Program{ public static void Main(string[] args){ const int mod = 573; var str = Console.ReadLine(); var length = str.Length; var charCount = new int[26]; var facSeq = Enumerable.Range(1, length).ToArray(); foreach(var s in str){ charCount[s - 'A']++; } Func<int, List<int>> func = n =>{ var tmp = n; var list = new List<int>(); for(var i = 2; i * i <= tmp; i++){ while(tmp % i == 0){ tmp /= i; list.Add(i); } } if(tmp > 1) list.Add(tmp); return list; }; foreach(var cc in charCount){ for(var i = 2; i <= cc; i++){ foreach(var j in func(i)){ for(var k = 0; k < length; k++) { if(facSeq[k] % j == 0) { facSeq[k] /= j; break; } } } } } var result = 1; foreach(var fac in facSeq){ result *= fac; while(result >= mod){ result -= mod; } } Console.WriteLine(result == 0 ? mod - 1 : result - 1); } } }