結果

問題 No.2671 NUPC Decompressor
ユーザー osada-yumosada-yum
提出日時 2024-03-22 10:39:55
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 1,027 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-22 10:39:58
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
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 -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program yukicoder_2671
  use, intrinsic :: iso_fortran_env
  implicit none
  integer(int32) :: k
  read(input_unit, *) k
  select case(k)
  case(1); write(output_unit, '(a)') "NUPC"
  case(2); write(output_unit, '(a)') "NNUPC"
  case(3); write(output_unit, '(a)') "NUNUPC"
  case(4); write(output_unit, '(a)') "NNUNNUPC"
  case(5); write(output_unit, '(a)') "NUPNUPC"
  case(6); write(output_unit, '(a)') "NNUPNNUPC"
  case(7); write(output_unit, '(a)') "NUNUPNUNUPC"
  case(8); write(output_unit, '(a)') "NNUNNUPNNUNNUPC"
  case(9); write(output_unit, '(a)') "NUPCNUPC"
  case(10); write(output_unit, '(a)') " NNUPCNNUPC"
  case(11); write(output_unit, '(a)') " NUNUPCNUNUPC"
  case(12); write(output_unit, '(a)') " NNUNNUPCNNUNNUPC"
  case(13); write(output_unit, '(a)') " NUPNUPCNUPNUPC"
  case(14); write(output_unit, '(a)') " NNUPNNUPCNNUPNNUPC"
  case(15); write(output_unit, '(a)') " NUNUPNUNUPCNUNUPNUNUPC"
  case(16); write(output_unit, '(a)') " NNUNNUPNNUNNUPCNNUNNUPNNUNNUPC"
  end select
end program yukicoder_2671
0