結果

問題 No.1642 Registration
ユーザー n_getn_get
提出日時 2021-08-13 21:22:31
言語 Scheme
(Gauche-0.9.13)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 5,460 KB
実行使用メモリ 13,744 KB
最終ジャッジ日時 2023-07-27 03:08:51
合計ジャッジ時間 1,324 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,628 KB
testcase_01 AC 19 ms
11,740 KB
testcase_02 AC 19 ms
11,680 KB
testcase_03 AC 18 ms
11,880 KB
testcase_04 AC 19 ms
11,736 KB
testcase_05 AC 18 ms
11,756 KB
testcase_06 AC 18 ms
11,864 KB
testcase_07 AC 19 ms
13,744 KB
testcase_08 AC 19 ms
11,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(let ([a (read)])
  (cond
   [(< a 10) (print "00" a)]
   [(< a 100) (print "0" a)]
   [else (print a)]))
0