結果
問題 | No.784 「,(カンマ)」 |
ユーザー | むらため |
提出日時 | 2019-02-11 03:37:33 |
言語 | Nim (2.0.2) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 3,098 ms |
コンパイル使用メモリ | 61,532 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 19:20:22 |
合計ジャッジ時間 | 3,670 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
ソースコード
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.} proc putchar_unlocked(c:char){. importc:"putchar_unlocked",header: "<stdio.h>" .} setStdIoUnbuffered() let S = stdin.readLine() if S.len <= 3: quit S,0 for i,s in S: if (S.len - i) mod 3 == 0 and i != 0: putchar_unlocked(',') putchar_unlocked(s) putchar_unlocked('\n')