結果

問題 No.542 1円玉と5円玉
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-06-12 01:50:51
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 3,200 ms
コンパイル使用メモリ 68,992 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-13 03:31:53
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, tables

let AB = stdin.readLine.split.map parseInt
let (A, B) = (AB[0], AB[1])

var dic = initCountTable[int]()

for a in 0 .. A:
  for b in 0 .. B:
    dic.inc a + 5 * b


for k, v in dic:
  if k != 0: echo k
0