結果

問題 No.188 HAPPY DAY
ユーザー ardggyardggy
提出日時 2021-02-12 00:23:14
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 66,376 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-25 14:14:29
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'strutils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #

import strutils, sequtils

proc main() =
   echo 14
   # 1 -> 1,10
   # 2 -> 2,11,20 
   # 3 -> 3,12,21,30
   # 4 -> 4,13,22
   # 5 -> 5,14,23
   # 6 -> 6,15,24
   # 7 -> 7,16,25
   # 8 -> 8,17,26
   # 9 -> 9,18,27
   # 10 -> 28 
   # 11 -> 29
   # 12 -> xx

when isMainModule: main()
0