結果
問題 | No.405 ローマ数字の腕時計 |
ユーザー | TD |
提出日時 | 2022-06-08 14:19:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,215 bytes |
コンパイル時間 | 876 ms |
コンパイル使用メモリ | 112,980 KB |
実行使用メモリ | 26,088 KB |
最終ジャッジ日時 | 2024-09-21 05:05:56 |
合計ジャッジ時間 | 2,479 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
21,936 KB |
testcase_01 | AC | 26 ms
23,984 KB |
testcase_02 | RE | - |
testcase_03 | AC | 26 ms
21,684 KB |
testcase_04 | AC | 26 ms
23,808 KB |
testcase_05 | AC | 26 ms
24,044 KB |
testcase_06 | AC | 26 ms
26,088 KB |
testcase_07 | AC | 26 ms
23,936 KB |
testcase_08 | AC | 26 ms
23,784 KB |
testcase_09 | RE | - |
testcase_10 | AC | 26 ms
21,816 KB |
testcase_11 | AC | 26 ms
23,952 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 26 ms
25,984 KB |
testcase_20 | RE | - |
testcase_21 | AC | 27 ms
23,912 KB |
testcase_22 | RE | - |
testcase_23 | AC | 27 ms
24,168 KB |
testcase_24 | AC | 26 ms
25,956 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); string[] s1 = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII" }; int a = int.Parse(s[1]); int t = 0; int count = 12; for(int i = 0; i < 12; i++) { if (s1[i] == s[0]) { t = i + 1; } } t += a; if (t > 12) { t %= 12; t -= 1; Console.WriteLine(s1[t]); } else { t -= 1; Console.WriteLine(s1[t]); } if (t < 0) { t %= -12; for(int j=t*-1;j>0 ;j-- ) { count--; if (count == 1) { count = 12; } } count -= 1; Console.WriteLine(s1[count]); } } } }